:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf7f1;
  --paper: rgba(255, 251, 246, 0.74);
  --paper-strong: #fcfaf6;
  --sand: #ddd0bf;
  --sand-deep: #b89f84;
  --text: #241b16;
  --muted: #6e6258;
  --line: rgba(36, 27, 22, 0.1);
  --panel: #171310;
  --panel-soft: #221c18;
  --panel-line: rgba(255, 246, 236, 0.1);
  --shadow: 0 24px 60px rgba(46, 32, 22, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top center, rgba(184, 159, 132, 0.08), transparent 24%),
    linear-gradient(180deg, #faf6f0 0%, #f6f0e7 46%, #f1e8dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 159, 132, 0.08), transparent 18%),
    radial-gradient(circle at 88% 72%, rgba(91, 67, 50, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36, 27, 22, 0.06);
}

.header-inner,
.hero-shell,
.about-layout,
.cta-panel,
.contact-layout,
.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--panel);
  color: #f6ece1;
  font-family: "Instrument Serif", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand-text {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.6rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(38, 28, 21, 0.12);
}

.button-primary {
  background: var(--panel);
  color: #f7eee4;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--panel-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border-color: var(--line);
}

.button-small {
  padding: 0.8rem 1.05rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: #88684c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.gallery-intro h2,
.hero h1,
.cta-panel h2,
.showcase-strip-head h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.section-heading h2,
.gallery-intro h2,
.showcase-strip-head h2,
.cta-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero {
  padding-top: 2.8rem;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: end;
  gap: 2.25rem;
}

.hero h1 {
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  max-width: 9ch;
}

.hero-text,
.gallery-intro p,
.showcase-strip-head p,
.about-story p,
.contact-copy p,
.section-heading p,
.service-card p,
.trust-card p,
.cta-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 34rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 1.2rem;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-signature span {
  position: relative;
  padding-left: 1rem;
}

.hero-signature span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--sand-deep);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  gap: 1rem;
}

.hero-primary-frame,
.hero-secondary-frame,
.showcase-mini,
.service-card,
.about-panel,
.trust-card,
.contact-card,
.group-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-primary-frame,
.hero-secondary-frame {
  overflow: hidden;
}

.hero-primary-frame img,
.hero-secondary-frame img {
  object-fit: cover;
}

.hero-primary-frame {
  min-height: 37rem;
  position: relative;
}

.hero-primary-frame img {
  height: 100%;
}

.hero-frame-copy {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(23, 19, 16, 0.78);
  color: #f7efe7;
  backdrop-filter: blur(12px);
}

.hero-frame-copy p {
  margin: 0;
  color: rgba(247, 239, 231, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.hero-frame-copy h2 {
  margin: 0.45rem 0 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.96;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-secondary-frame {
  min-height: 21rem;
}

.hero-secondary-frame img {
  height: 100%;
}

.showcase-strip {
  padding-top: 0.35rem;
}

.showcase-strip-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.showcase-strip-head p {
  max-width: 24rem;
}

.showcase-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-mini {
  overflow: hidden;
}

.showcase-mini img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.showcase-mini div {
  padding: 1rem 1rem 1.15rem;
}

.showcase-mini p,
.trust-index,
.about-panel-label {
  margin: 0 0 0.35rem;
  color: #88684c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-mini h3,
.service-card h3,
.trust-card h3,
.group-head h3 {
  margin: 0;
  font-size: 1.08rem;
}

.about-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(17rem, 0.55fr);
  align-items: start;
}

.about-story {
  max-width: 38rem;
}

.about-panel {
  padding: 1.4rem;
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-list li + li {
  margin-top: 0.85rem;
}

.services-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.trust-card,
.contact-card {
  padding: 1.5rem;
}

.service-card span {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: #88684c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.gallery-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(189, 155, 122, 0.16), transparent 18%),
    linear-gradient(180deg, #1b1511 0%, #15110f 100%);
  color: #f7efe5;
}

.gallery-shell {
  position: relative;
}

.gallery-intro {
  max-width: 54rem;
  margin-bottom: 1.35rem;
}

.gallery-intro .eyebrow,
.gallery-intro p {
  color: rgba(247, 239, 229, 0.74);
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 239, 229, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 229, 0.8);
  font-size: 0.92rem;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.gallery-chip:hover,
.gallery-chip:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(247, 239, 229, 0.32);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.gallery-card,
.group-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(247, 239, 229, 0.08);
  background: #0f0d0b;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.gallery-card {
  min-height: 19rem;
}

.gallery-card.featured-large {
  grid-column: span 7;
  min-height: 36rem;
}

.gallery-card.featured-medium {
  grid-column: span 5;
  min-height: 17.5rem;
}

.gallery-card img,
.group-gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img,
.group-gallery-item:hover img,
.group-gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 7, 6, 0.9) 100%);
}

.gallery-card-overlay p,
.gallery-meta {
  margin: 0;
  color: rgba(247, 239, 229, 0.78);
  font-size: 0.88rem;
}

.gallery-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(243, 229, 212, 0.92);
  color: #171310;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.gallery-request:hover,
.gallery-request:focus-visible {
  transform: translateY(0);
  background: #f7ead9;
}

.gallery-card:hover .gallery-request,
.gallery-card:focus-within .gallery-request,
.group-gallery-item:hover .gallery-request,
.group-gallery-item:focus-within .gallery-request {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gallery-card-overlay h3 {
  margin: 0.3rem 0;
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.gallery-groups {
  display: grid;
  gap: 1.2rem;
}

.group-panel {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(247, 239, 229, 0.08);
  box-shadow: none;
}

.group-panel[id] {
  scroll-margin-top: 7rem;
}

.group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.group-head p {
  margin: 0;
  color: rgba(247, 239, 229, 0.68);
}

.group-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.group-gallery-item {
  aspect-ratio: 4 / 5;
}

.gallery-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 10, 9, 0.72);
  backdrop-filter: blur(8px);
  text-align: center;
}

.group-gallery-item .gallery-request {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.25rem;
  margin-top: 0;
  text-align: center;
}

.toggle-button {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: #eadbc8;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.trust-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35));
}

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

.cta-panel {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(197, 166, 130, 0.22), transparent 26%),
    linear-gradient(135deg, #171310 0%, #261e19 100%);
  color: #f7efe5;
  box-shadow: 0 28px 70px rgba(28, 21, 17, 0.24);
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(247, 239, 229, 0.76);
}

.cta-panel .button-primary {
  background: #f3e5d4;
  color: #171310;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: center;
}

.contact-card {
  background: rgba(255, 251, 246, 0.88);
}

.contact-label {
  margin: 0 0 1rem;
  color: #88684c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(36, 27, 22, 0.08);
}

.site-footer a {
  color: #6f5138;
  font-weight: 700;
}

.footer-inner {
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox {
  width: min(92vw, 1020px);
  padding: 1.2rem;
  border: 0;
  border-radius: 28px;
  background: rgba(18, 15, 13, 0.98);
  color: #f7efe5;
}

.lightbox::backdrop {
  background: rgba(6, 5, 5, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox p {
  margin: 0.9rem 0 0;
  text-align: center;
  color: rgba(247, 239, 229, 0.82);
}

.lightbox-request {
  margin: 1rem auto 0;
  min-width: 14rem;
}

.lightbox-close {
  display: block;
  margin-left: auto;
  margin-bottom: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: #f7efe5;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-shell,
  .about-layout,
  .contact-layout,
  .cta-panel,
  .showcase-strip-head {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    justify-items: start;
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(36, 27, 22, 0.08);
    border-radius: 24px;
    background: rgba(252, 248, 241, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-inner > .button-small {
    display: none;
  }

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

  .gallery-card.featured-large,
  .gallery-card.featured-medium {
    grid-column: span 3;
    min-height: 20rem;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 3.9rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1,
  .section-heading h2,
  .gallery-intro h2,
  .showcase-strip-head h2,
  .cta-panel h2 {
    max-width: none;
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-actions,
  .gallery-controls,
  .hero-signature {
    gap: 0.8rem;
  }

  .button,
  .cta-button {
    width: 100%;
  }

  .hero-visual,
  .showcase-strip-grid,
  .services-grid-premium,
  .trust-grid-premium,
  .group-gallery,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-primary-frame,
  .hero-secondary-frame {
    min-height: auto;
  }

  .hero-primary-frame img,
  .hero-secondary-frame img,
  .showcase-mini img,
  .gallery-card,
  .gallery-card.featured-large,
  .gallery-card.featured-medium,
  .group-gallery-item {
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .gallery-card.featured-large,
  .gallery-card.featured-medium {
    grid-column: auto;
  }

  .gallery-chip {
    width: 100%;
  }

  .gallery-request {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
