:root {
  --black: #060606;
  --ink: #11100e;
  --charcoal: #191816;
  --cream: #f7f4ee;
  --paper: #fffdf8;
  --muted: #8f887d;
  --gold: #c8a45d;
  --gold-soft: #ead7a5;
  --line: rgba(200, 164, 93, 0.28);
  --glass: rgba(8, 8, 8, 0.54);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  transition: background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  min-height: 70px;
  background: rgba(6, 6, 6, 0.92);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: #15110a;
  background: var(--gold);
  opacity: 1;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #15110a;
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(200, 164, 93, 0.25);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 120px clamp(20px, 7vw, 110px) 72px;
  isolation: isolate;
  color: #fff;
  text-align: left;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.68));
}

.hero-content {
  width: min(760px, 100%);
  animation: fadeUp 780ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(48px, 9vw, 116px);
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(34px, 5.5vw, 72px);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 12px;
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 24px);
}

.hero-subtitle span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-grid,
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.section-copy {
  color: #514b42;
  font-size: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-row div {
  padding: 34px;
  background: #fff;
}

.stats-row strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: #625a4e;
}

.dark-band {
  color: #fff;
  background: var(--black);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: 44px;
}

.section-heading.split {
  width: 100%;
}

.section-heading.split > p {
  margin: 8px 0 0;
  color: #625a4e;
  font-size: 18px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-auto-rows: minmax(300px, 42vw);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #171717;
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #090909;
  transition: transform 500ms ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.feature-card div {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.feature-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
}

.service-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.why-grid article,
.testimonial-grid figure {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(17, 16, 14, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.service-grid p,
.why-grid p,
.testimonial-grid blockquote {
  margin: 14px 0 0;
  color: #625a4e;
}

.gallery-section {
  background: #f4f0e8;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.category-pill {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4c4539;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.category-pill:hover,
.category-pill.is-active {
  color: #15110b;
  border-color: rgba(195, 152, 82, 0.72);
  background: rgba(195, 152, 82, 0.18);
}

.masonry-gallery {
  columns: 4 250px;
  column-gap: 18px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: 8px;
  background: #151515;
  cursor: zoom-in;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 380ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.9;
}

.why-section {
  background: #fff;
}

.why-grid article span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.testimonials {
  color: #fff;
  background: var(--charcoal);
}

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

.testimonial-grid figure {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-grid blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.35;
}

.testimonial-grid figcaption {
  margin-top: 22px;
  color: var(--gold-soft);
  font-weight: 700;
}

.instagram-feed {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  align-items: center;
  background: var(--black);
  color: #fff;
}

.feed-title h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.feed-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.feed-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  background: #0c0c0c;
}

.cta-section {
  display: grid;
  place-items: center;
  gap: 26px;
  padding: clamp(86px, 12vw, 150px) 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("images/editorial-mono-1100x1400.webp") center 34% / cover no-repeat;
}

.cta-section h2 {
  width: min(900px, 100%);
}

.contact-section {
  background: var(--paper);
}

.contact-details {
  display: grid;
  gap: 10px;
  color: #514b42;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 24px;
}

.contact-form,
.map-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(17, 16, 14, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4d463c;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 16, 14, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: #1d1a16;
  background: #fbfaf6;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1f8f55;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
  padding: 64px clamp(20px, 5vw, 72px) 32px;
  color: #fff;
  background: #050505;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 320px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 88svh;
  width: min(980px, 100%);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(6, 6, 6, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .section-grid,
  .section-heading.split,
  .contact-grid,
  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(320px, 52vw);
  }

  .feature-card.large {
    grid-row: auto;
  }

  .stats-row,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  body {
    width: 100%;
  }

  .site-header {
    left: 0;
    right: 0;
    width: 100vw;
    min-height: 68px;
    padding: 14px 16px;
  }

  .menu-toggle {
    flex: 0 0 44px;
    margin-left: auto;
  }

  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    min-height: 100svh;
    padding: 110px 18px 58px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    min-width: 0;
    max-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.7));
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }

  h1 {
    max-width: 340px;
    margin-inline: auto;
    font-size: 38px;
    line-height: 1.03;
  }

  .hero-subtitle {
    max-width: 280px;
    justify-content: center;
    gap: 0 8px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-subtitle span:not(:last-child)::after {
    margin-left: 8px;
  }

  .hero-media img {
    object-position: 63% 42%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 354px);
    margin-inline: auto;
  }

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

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-row div,
  .service-grid article,
  .why-grid article,
  .testimonial-grid figure {
    padding: 24px;
  }

  .masonry-gallery {
    columns: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}


/* Accessibility and resilient rendering hardening */
html { color-scheme: only light; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 4px;
  color: #060606;
  background: #fffdf8;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.hero-content, .section-heading, .about-copy, .service-card, .why-grid article,
.contact-details, .contact-form, .site-footer { visibility: visible; }
.contact-form label { color: #11100e; }
.contact-form input, .contact-form select, .contact-form textarea {
  color: #11100e;
  background: #fffdf8;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
