@font-face {
  font-family: "Noe Display";
  src: url("Noe-Display-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noe Display";
  src: url("Noe-Display-Regular-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Noe Text";
  src: url("Noe-Text-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f6f8;
  --paper: #ffffff;
  --ink: #111317;
  --accent: #c1121f;
  --accent-deep: #8a0f19;
  --accent-soft: #fdecee;
  --header-bg: #0f1115;
  --header-text: #f3f5f8;
  --header-muted: #c9d0da;
  --muted: #5a6472;
  --line: #d9dee6;
  --shadow: 0 12px 30px rgba(17, 19, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noe Text", "Lora", Georgia, serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(7px);
  background: rgba(15, 17, 21, 0.95);
  border-bottom: 1px solid #202530;
}

.nav-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  font-family: "Noe Text", "Lora", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--header-text);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  line-height: 1;
  color: var(--header-text);
  font-family: "Allura", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}

.brand-lockup {
  display: inline-grid;
  gap: 2px;
}

.brand-tagline {
  color: var(--header-muted);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--header-muted);
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #2a303b;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #f3f5f8;
  border-radius: 999px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(193, 18, 31, 0.2);
  color: #ffffff;
}

.page {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 38px 0 72px;
}

.page.page-wide {
  width: min(1400px, 96vw);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 10px;
}

.hero h1 {
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
  margin: 0 0 14px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 56ch;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Slightly larger intro copy on the About page hero text block */
.hero .about-intro p {
  font-size: 1.08rem;
}

.hero .about-intro h1 {
  margin-bottom: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  font-family: "Noe Text", "Lora", Georgia, serif;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-deep);
}

.button.ghost {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "a a a"
    "b c d";
  gap: 14px;
}

.hero-cell,
.hero-card {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-cell img,
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cell-a { grid-area: a; min-height: 360px; }
.hero-cell-b { grid-area: b; min-height: 230px; }
.hero-cell-c { grid-area: c; min-height: 230px; }
.hero-cell-d { grid-area: d; min-height: 230px; }
.hero-card { min-height: 360px; }
.hero > .hero-card {
  aspect-ratio: 2 / 3;
  min-height: unset;
}

.section {
  margin-top: 52px;
}

.section h2 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
}

.section h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 8px;
}

.section .lead {
  color: var(--muted);
  margin: 0 0 20px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.type-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.quote-card p {
  font-style: italic;
  color: #3d4654;
}

.quote-card h3 {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
}

.photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef2f7;
  min-height: 250px;
  position: relative;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo:hover img {
  transform: scale(1.04);
}

.photo figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.featured-grid > .photo {
  min-height: unset !important;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

.featured-grid > .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-grid {
  gap: 8px;
}

.portfolio-redesign {
  margin-top: 34px;
}

.portfolio-header .lead {
  max-width: 64ch;
}

.portfolio-categories {
  display: grid;
  gap: 16px;
}

.portfolio-block {
  padding: 16px;
}

.portfolio-meta h3 {
  margin: 4px 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
}

.portfolio-meta p {
  margin: 0;
  color: var(--muted);
}

.portfolio-meta .tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6f0d18;
}

.portfolio-more-link {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 600;
  font-family: "Noe Text", "Lora", Georgia, serif;
  transition: transform 0.25s ease, background 0.25s ease;
}

.portfolio-more-link:hover {
  color: #fff;
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.portfolio-images {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-shot {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  min-height: 120px;
}

.portfolio-shot.feature {
  grid-row: auto;
}

.portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-shot:hover img {
  transform: scale(1.03);
}

.gallery-page {
  margin-top: 22px;
  overflow-x: clip;
}

.gallery-back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gallery-head .lead {
  max-width: 62ch;
}

.gallery-grid {
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  column-count: 3;
  column-width: auto;
  column-gap: 12px;
  column-fill: balance;
}

.gallery-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}


.price {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card .price {
  margin-top: auto;
  padding-top: 12px;
}


.list-clean {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.list-clean li {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "▸";
  display: inline-block;
  width: 16px;
  color: var(--accent-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f1f2 100%);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-top: 0;
  font-family: "Noe Display", "Playfair Display", Georgia, serif;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #ccd3dd;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eaf4ec;
  border: 1px solid #b9d8bf;
  color: #274f2e;
  display: none;
}

.notice.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent-deep);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent-deep);
}

.footer-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.footer-brand-text {
  font-family: "Allura", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  grid-column: 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  grid-column: 2;
}

.footer-rights-inline {
  font-size: 0.86rem;
  color: var(--muted);
  font-family: "Noe Text", "Lora", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.2;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.65s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.08s; }
.reveal.delay-2 { animation-delay: 0.16s; }
.reveal.delay-3 { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 12px;
    background: #151922;
    border: 1px solid #28303c;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 30;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    border-radius: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c"
      "d d";
  }

  .hero-cell-a { min-height: 300px; }
  .hero-cell-b,
  .hero-cell-c,
  .hero-cell-d { min-height: 200px; }
  .hero-card { min-height: 300px; }
  .hero > .hero-card {
    min-height: unset;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .featured-grid > .photo {
    min-height: unset !important;
    aspect-ratio: 3 / 4;
  }

  .portfolio-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-shot.feature {
    min-height: 120px;
  }

  .gallery-grid {
    column-count: 2;
    column-width: auto;
  }

  .brand {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 560px) {
  .portfolio-images {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
    column-width: auto;
  }
}
