:root {
  --ink: #25211f;
  --paper: #f8f4ec;
  --cream: #eee5d7;
  --terracotta: #b85d3f;
  --gold: #d49a3a;
  --sage: #71806b;
  --plum: #5f4657;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(49, 36, 28, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
  background: rgba(248, 244, 236, .92);
  border-bottom: 1px solid rgba(37, 33, 31, .08);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 52% 48% 60% 40%;
  background: conic-gradient(from 35deg, var(--terracotta), var(--gold), var(--sage), var(--plum), var(--terracotta));
  transform: rotate(-12deg);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.35);
}
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  position: relative;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  min-height: calc(100vh - 76px);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.3rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(212,154,58,.16), transparent 23rem),
    radial-gradient(circle at 80% 80%, rgba(113,128,107,.12), transparent 24rem);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, blockquote { font-family: var(--serif); }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.035em;
}
.hero-text { max-width: 620px; margin: 1.8rem 0 0; font-size: clamp(1rem, 1.6vw, 1.2rem); color: #655d57; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--terracotta); }
.button-ghost { border-color: rgba(37,33,31,.25); }
.button-ghost:hover { border-color: var(--ink); }

.hero-art { position: relative; min-height: 570px; }
.hero-image { position: absolute; margin: 0; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { inset: 4% 12% 4% 8%; transform: rotate(2deg); }
.hero-image-small { width: 34%; height: 34%; border: 8px solid var(--white); }
.hero-image-top { top: -2%; right: -2%; transform: rotate(7deg); }
.hero-image-bottom { right: 0; bottom: -2%; transform: rotate(-5deg); }
.paint-stroke { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.stroke-one { width: 210px; height: 55px; top: 6%; left: -8%; background: var(--gold); transform: rotate(-20deg); }
.stroke-two { width: 160px; height: 48px; bottom: 8%; left: 1%; background: var(--plum); transform: rotate(15deg); }

.intro-section, .gallery-section, .contact-section {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.3rem, 7vw, 7rem);
}
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  background: var(--white);
}
h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 600; line-height: .98; }
.intro-section > p { max-width: 720px; margin: 0; color: #655d57; font-size: 1.08rem; }

.gallery-section { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading > p { color: #756d67; }
.gallery-grid { columns: 4 260px; column-gap: 1rem; }
.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ded8ce;
  cursor: zoom-in;
  break-inside: avoid;
}
.gallery-card img { width: 100%; height: auto; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.gallery-card::after {
  content: attr(data-title);
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  left: .75rem;
  padding: .65rem .8rem;
  color: white;
  background: rgba(20,18,17,.72);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(8px);
}
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; transform: translateY(0); }
.gallery-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.gallery-status { padding-top: 1.5rem; color: #756d67; text-align: center; }

.quote-section {
  padding: clamp(5rem, 10vw, 10rem) 1.3rem;
  color: var(--white);
  background: var(--plum);
  text-align: center;
}
.quote-section blockquote { max-width: 1050px; margin: 0 auto 1.5rem; font-size: clamp(3rem, 7vw, 7rem); font-weight: 500; line-height: .95; }
.quote-section span { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; }

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--terracotta);
  color: var(--white);
}
.contact-section h2 { max-width: 780px; }
.contact-section p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.82); }
.contact-section .eyebrow { color: #ffe1b2; }
.button-light { background: var(--white); color: var(--ink); white-space: nowrap; }
.button-light:hover { background: var(--ink); color: white; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.3rem, 7vw, 7rem);
  background: #1f1b19;
  color: rgba(255,255,255,.7);
}
.footer-brand { color: white; }
.site-footer p { margin: 0; font-size: .8rem; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 2rem;
  border: 0;
  background: rgba(18,16,15,.96);
  color: white;
}
.lightbox[open] { display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.lightbox::backdrop { background: rgba(18,16,15,.96); }
.lightbox-content { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; height: 100%; }
.lightbox-content img { max-width: 100%; max-height: calc(100vh - 7rem); object-fit: contain; box-shadow: 0 25px 75px rgba(0,0,0,.4); }
.lightbox-content p { margin: .8rem 0 0; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.lightbox-close, .lightbox-nav { border: 0; background: transparent; color: white; cursor: pointer; }
.lightbox-close { position: fixed; top: 1rem; right: 1.4rem; z-index: 2; font-size: 2.5rem; }
.lightbox-nav { font-size: 4rem; opacity: .72; }
.lightbox-nav:hover { opacity: 1; }
.noscript { padding: 1rem; text-align: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 520px; }
  .intro-section { grid-template-columns: 1fr; }
  .contact-section { align-items: flex-start; flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: grid; gap: 5px; padding: .5rem; border: 0; background: transparent; }
  .menu-toggle span { width: 25px; height: 2px; background: var(--ink); }
  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .8rem 1.3rem 1.2rem;
    background: var(--paper);
    border-bottom: 1px solid rgba(37,33,31,.1);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .9rem 0; }
  .hero { padding-top: 3.2rem; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-art { min-height: 410px; }
  .hero-image-main { inset: 5% 7% 6% 1%; }
  .hero-image-small { border-width: 5px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 2rem; }
  .section-heading > p { margin: 0; }
  .gallery-grid { columns: 2 145px; column-gap: .65rem; }
  .gallery-card { margin-bottom: .65rem; }
  .lightbox { padding: 1rem; }
  .lightbox[open] { grid-template-columns: 44px 1fr 44px; }
  .lightbox-nav { font-size: 3rem; }
}

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