/* Style reminder: Warm Organic Editorialism; reinforce asymmetrical editorial pacing, tactile paper texture, deep forest green authority, and muted gold measurement details. */
:root {
  --paper: #f7f2e8;
  --paper-deep: #ede4d6;
  --ink: #37332b;
  --muted: #746d61;
  --green: #173d2d;
  --green-soft: #2f5d43;
  --gold: #a98245;
  --line: rgba(55, 51, 43, 0.16);
  --white: #fffaf0;
  --error: #b23b35;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Source Sans 3', Arial, sans-serif;
  --shadow: 0 28px 90px rgba(45, 38, 26, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  background-image: linear-gradient(rgba(247, 242, 232, 0.92), rgba(247, 242, 232, 0.92)), url('../images/old-fig-lab-texture.png');
  background-size: 760px auto;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 18%, rgba(169, 130, 69, 0.12), transparent 26%), radial-gradient(circle at 86% 8%, rgba(23, 61, 45, 0.09), transparent 26%);
  z-index: -1;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 20;
  background: var(--green);
  color: var(--white);
  padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  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: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid var(--line);
}
.brand-mark { display: inline-flex; align-items: center; gap: .8rem; min-width: max-content; }
.brand-symbol {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--green);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(255, 250, 240, .64);
}
.brand-copy strong { display: block; font-family: var(--display); font-size: 1.35rem; line-height: 1; }
.brand-copy em { display: block; font-style: normal; color: var(--muted); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; gap: clamp(.8rem, 2vw, 1.7rem); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.site-nav a, .header-phone { position: relative; }
.site-nav a::after, .header-phone::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}
.site-nav a:hover::after, .header-phone:hover::after { transform: scaleX(1); }
.header-phone { color: var(--green); font-weight: 700; min-width: max-content; }

.hero {
  max-width: 1340px;
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 8rem);
}
.eyebrow, .section-kicker {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: .96; font-family: var(--display); color: var(--green); font-weight: 600; }
h1 { font-size: clamp(4rem, 9.3vw, 8.8rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.6rem, 5.6vw, 5.7rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.45rem); letter-spacing: -.025em; }
.hero-subtitle {
  max-width: 35rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 1.35rem 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .92rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .82rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: #0f2c20; color: var(--white); }
.btn-secondary { border-color: var(--gold); color: var(--green); background: rgba(255, 250, 240, .48); }
.subtle-phone { color: var(--muted); font-size: .95rem; }
.subtle-phone a { color: var(--green); font-weight: 700; }
.hero-composition { position: relative; min-height: 42rem; }
.hero-image-main {
  width: 86%;
  margin: 0 0 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 96%);
}
.hero-image-main img { width: 100%; height: 37rem; object-fit: cover; filter: saturate(.92) contrast(.98); }
.hero-image-sample {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 43%;
  border: .7rem solid var(--paper);
  box-shadow: 0 18px 50px rgba(45, 38, 26, .18);
  transform: rotate(-3deg);
  overflow: hidden;
}
.hero-image-sample img { height: 17rem; width: 100%; object-fit: cover; }
.measurement-note {
  position: absolute;
  right: 4%;
  bottom: 6%;
  padding: .7rem 1rem;
  background: rgba(255, 250, 240, .88);
  color: var(--green);
  border-left: 3px solid var(--gold);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.studio-section, .services-section, .process-section, .gallery-section, .testimonial-section, .contact-section, .map-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.8rem, 9vw, 8.5rem) clamp(1rem, 4vw, 2rem);
}
.studio-section {
  display: grid;
  grid-template-columns: .22fr 1fr .72fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
}
.studio-story p { font-size: clamp(1.22rem, 2.05vw, 1.72rem); line-height: 1.44; color: var(--ink); }
.studio-story p + p { color: var(--muted); }
.studio-image { margin: 5rem 0 0; }
.studio-image img { height: 31rem; width: 100%; object-fit: cover; filter: saturate(.92); }
.studio-image figcaption { margin-top: .85rem; color: var(--muted); font-size: .92rem; }

.section-heading { width: min(55rem, 100%); margin-left: auto; margin-bottom: 3rem; }
.service-catalog { border-top: 1px solid var(--line); }
.service-line {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(1rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-line p { margin: .15rem 0 0; color: var(--muted); font-size: 1.09rem; }
.service-line:hover h3 { color: var(--gold); }

.process-section {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  background: rgba(23, 61, 45, .045);
}
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 2.1rem;
  top: .5rem;
  bottom: .5rem;
  width: 1px;
  background: var(--gold);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.1rem;
  padding: 0 0 2.5rem;
}
.timeline-step span {
  position: relative;
  z-index: 1;
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--paper);
  color: var(--green);
  font-family: var(--display);
  font-size: 1.35rem;
}
.timeline-step p { color: var(--muted); margin: .7rem 0 0; }

.gallery-heading { max-width: 48rem; }
.photo-spread {
  position: relative;
  min-height: 49rem;
  margin-top: 3rem;
}
.photo-spread figure { margin: 0; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.photo-spread img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.photo-spread figure:hover img { transform: scale(1.045); }
.spread-large {
  position: absolute;
  left: 4%;
  top: 0;
  width: 46%;
  height: 41rem;
  transform: rotate(-2.1deg);
  border: .75rem solid var(--paper);
}
.spread-tall {
  position: absolute;
  right: 7%;
  top: 5rem;
  width: 38%;
  height: 36rem;
  transform: rotate(2deg);
  border: .75rem solid var(--paper);
}
.spread-caption {
  position: absolute;
  left: 49%;
  bottom: 4rem;
  width: 23rem;
  padding: 1.5rem;
  background: rgba(255, 250, 240, .9);
  border-top: 2px solid var(--gold);
}
.spread-caption span { color: var(--gold); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-size: .78rem; }
.spread-caption p { margin-bottom: 0; color: var(--muted); }

.testimonial-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-stack { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); }
blockquote { margin: 0; font-family: var(--display); color: var(--green); font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: 1.04; letter-spacing: -.035em; }
blockquote cite { display: block; margin-top: 1.3rem; font-family: var(--body); color: var(--muted); font-size: .95rem; font-style: normal; letter-spacing: .11em; text-transform: uppercase; }

.contact-section { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(2rem, 6vw, 6rem); }
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.contact-panel { display: grid; grid-template-columns: 1fr .55fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; }
.field-group { position: relative; padding-top: 1.1rem; }
.field-group-wide { grid-column: 1 / -1; }
.field-group input, .field-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(55, 51, 43, .34);
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: .72rem 0 .62rem;
  outline: none;
  transition: border-color .24s ease, box-shadow .24s ease;
}
.field-group textarea { resize: vertical; min-height: 8rem; }
.field-group label {
  position: absolute;
  left: 0;
  top: 1.85rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform .24s ease, color .24s ease, font-size .24s ease;
}
.field-group input:focus, .field-group textarea:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.field-group input:focus + label, .field-group textarea:focus + label, .field-group input:not(:placeholder-shown) + label, .field-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.55rem);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-submit { grid-column: 1 / -1; width: fit-content; margin-top: .75rem; }
.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 1.2rem;
  background: rgba(23, 61, 45, .08);
  color: var(--green);
  border-left: 3px solid var(--gold);
  font-weight: 700;
}
.error-message { color: var(--error) !important; font-size: .88rem !important; margin-top: .38rem !important; }
.contact-info {
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 1px solid var(--gold);
  color: var(--muted);
}
.contact-info h3 { margin-bottom: .7rem; }
.contact-info a { display: block; color: var(--green); font-weight: 700; margin: .35rem 0; }
.contact-info address { margin-top: 1rem; font-style: normal; }

.map-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.map-copy a { color: var(--green); font-weight: 700; border-bottom: 1px solid var(--gold); }
.map-frame {
  padding: .9rem;
  background: rgba(255, 250, 240, .62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 27rem; border: 0; filter: grayscale(.18) sepia(.08); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  padding: 3rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong { font-family: var(--display); color: var(--green); font-size: 2rem; }
.site-footer nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.footer-contact a { color: var(--green); font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .hero, .studio-section, .process-section, .contact-section, .map-section { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-composition { min-height: 35rem; }
  .hero-image-main img { height: 30rem; }
  .studio-section { gap: 1.5rem; }
  .studio-image { margin-top: 0; }
  .quote-stack, .contact-panel { grid-template-columns: 1fr; }
  .contact-info { padding-left: 0; border-left: 0; border-top: 1px solid var(--gold); }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer nav { justify-content: flex-start; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.4rem, 11vw, 3.7rem); }
  .brand-copy em, .header-phone { display: none; }
  .hero { padding-top: 2.2rem; }
  .hero-composition { min-height: 29rem; }
  .hero-image-main { width: 100%; }
  .hero-image-main img { height: 24rem; }
  .hero-image-sample { width: 52%; }
  .hero-image-sample img { height: 11rem; }
  .service-line { grid-template-columns: 1fr; gap: .35rem; }
  .timeline { padding-left: 0; }
  .timeline::before { left: 1.55rem; }
  .timeline-step { grid-template-columns: 3.1rem 1fr; }
  .timeline-step span { width: 3.1rem; height: 3.1rem; font-size: 1.05rem; }
  .photo-spread { min-height: 56rem; }
  .spread-large, .spread-tall, .spread-caption { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 100%; transform: none; }
  .spread-large { height: 30rem; }
  .spread-tall { height: 27rem; margin-top: 1rem; }
  .spread-caption { margin-top: 1rem; width: 100%; }
  blockquote { font-size: clamp(2rem, 10vw, 3rem); }
  .contact-form { grid-template-columns: 1fr; }
  .map-frame iframe { height: 21rem; }
}
