@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --ivory: #f5f0e8;
  --ivory-2: #ece2d4;
  --paper: #fffdf9;
  --charcoal: #1f1c19;
  --brown: #3b271f;
  --brown-2: #2a1b16;
  --terracotta: #b65737;
  --terracotta-dark: #934229;
  --sand: #d0bca4;
  --muted: #736b63;
  --white: #ffffff;
  --line: rgba(31, 28, 25, 0.16);
  --shadow: 0 22px 60px rgba(37, 24, 17, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: "Inter", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--terracotta); color: white; }

svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 18px; }
svg .icon-fill { fill: currentColor; stroke: none; }

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(250px, 1fr);
  height: 112px;
  padding: 0 clamp(22px, 4.5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(15px);
}
.brand { align-items: center; display: inline-flex; justify-self: start; }
.brand img { height: 88px; object-fit: contain; object-position: left center; width: 210px; }
.desktop-nav { align-items: center; display: flex; gap: clamp(22px, 2.5vw, 42px); }
.desktop-nav a { font-size: 11px; font-weight: 600; letter-spacing: .12em; position: relative; text-transform: uppercase; }
.desktop-nav a::after { background: var(--terracotta); bottom: -10px; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; width: 100%; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { align-items: center; display: flex; gap: 22px; justify-self: end; }
.header-socials { display: flex; gap: 7px; }
.header-socials a, .footer-socials a { align-items: center; border: 1px solid var(--line); display: inline-flex; height: 38px; justify-content: center; transition: background 180ms ease, color 180ms ease; width: 38px; }
.header-socials a:hover { background: var(--charcoal); color: white; }
.header-call { border-left: 1px solid var(--line); display: flex; flex-direction: column; font-family: "Cormorant Garamond", serif; font-size: 21px; font-weight: 600; padding-left: 22px; }
.header-call span { color: var(--muted); font-family: "Inter", sans-serif; font-size: 8px; font-weight: 600; letter-spacing: .16em; margin-bottom: 3px; text-transform: uppercase; }
.menu-toggle, .mobile-nav { display: none; }

.hero { background: var(--brown-2); color: white; display: grid; grid-template-columns: 56% 44%; min-height: calc(100svh - 112px); }
.hero-media { min-height: 740px; overflow: hidden; position: relative; }
.hero-media > img,
.hero-video {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}
.hero-video {
  background: #181310;
  image-rendering: auto;
  transform: translateZ(0);
}
.hero-overlay { background: linear-gradient(90deg, transparent 55%, rgba(42,27,22,.38)), linear-gradient(0deg, rgba(20,12,9,.44), transparent 42%); inset: 0; position: absolute; }
.hero-photo-label { bottom: 34px; left: 38px; position: absolute; }
.hero-photo-label span { color: rgba(255,255,255,.68); display: block; font-size: 9px; letter-spacing: .17em; margin-bottom: 5px; text-transform: uppercase; }
.hero-photo-label strong { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; }
.hero-content { align-content: center; display: grid; padding: clamp(70px, 8vw, 132px) clamp(34px, 6vw, 100px); position: relative; }
.hero-content::before { background: var(--terracotta); content: ""; height: 1px; left: 0; position: absolute; top: 13%; width: 52px; }
.eyebrow, .section-label { align-items: center; color: var(--terracotta); display: flex; font-size: 9px; font-weight: 600; gap: 12px; letter-spacing: .18em; margin: 0 0 24px; text-transform: uppercase; }
.eyebrow::before, .section-label::before { background: currentColor; content: ""; height: 1px; width: 36px; }
.hero h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(72px, 7vw, 116px); font-weight: 600; letter-spacing: -.055em; line-height: .86; margin: 0; max-width: 620px; }
.hero-lead { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; margin: 38px 0 0; max-width: 530px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button { align-items: center; display: inline-flex; font-size: 10px; font-weight: 600; gap: 18px; justify-content: center; letter-spacing: .12em; min-height: 58px; padding: 0 24px; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button-primary { background: var(--terracotta); color: white; }
.button-primary:hover { background: var(--terracotta-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: white; }
.button-ghost:hover { background: white; color: var(--charcoal); }
.hero-proof { border-top: 1px solid rgba(255,255,255,.16); display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 68px; padding-top: 24px; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: "Cormorant Garamond", serif; font-size: 35px; font-weight: 600; }
.hero-proof span { color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .12em; margin-top: 3px; text-transform: uppercase; }

.intro-section { align-items: start; display: grid; gap: clamp(34px, 6vw, 100px); grid-template-columns: .45fr 1.35fr .65fr; padding: clamp(92px, 11vw, 168px) clamp(24px, 7vw, 112px); }
.intro-section h2, .section-heading h2, .projects-heading h2, .process-intro h2, .about-copy h2, .testimonials-heading h2, .areas-section h2, .faq-intro h2, .contact-intro h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(52px, 5.2vw, 82px); font-weight: 600; letter-spacing: -.035em; line-height: .98; margin: 0; }
.intro-section > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.85; margin: 6px 0 0; }

.services-section { background: var(--paper); padding: clamp(90px, 10vw, 154px) clamp(24px, 7vw, 112px); }
.section-heading { align-items: end; display: grid; gap: 60px; grid-template-columns: 1.35fr .65fr; margin-bottom: 72px; }
.section-heading h2 { max-width: 900px; }
.section-heading > p { color: var(--muted); font-size: 14px; line-height: 1.85; margin: 0 0 8px; max-width: 500px; }
.services-grid { display: grid; gap: 54px 24px; grid-template-columns: repeat(3, 1fr); }
.service-card { min-width: 0; }
.service-image { aspect-ratio: 4 / 4.5; overflow: hidden; position: relative; }
.service-image img { height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); width: 100%; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image > span { align-items: center; background: var(--paper); bottom: 0; display: flex; font-family: "Cormorant Garamond", serif; font-size: 21px; height: 52px; justify-content: center; left: 0; position: absolute; width: 58px; }
.service-copy { padding: 25px 4px 0; }
.service-copy h3 { font-family: "Cormorant Garamond", serif; font-size: 33px; font-weight: 600; letter-spacing: -.02em; margin: 0; }
.service-copy p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 15px 0 22px; }
.service-copy a { align-items: center; border-bottom: 1px solid var(--line); display: flex; font-size: 9px; font-weight: 600; justify-content: space-between; letter-spacing: .13em; padding-bottom: 12px; text-transform: uppercase; transition: border-color 180ms ease, color 180ms ease; }
.service-copy a:hover { border-color: var(--terracotta); color: var(--terracotta); }

.credential-band { align-items: center; background: var(--terracotta); color: white; display: flex; gap: 18px; justify-content: center; min-height: 126px; padding: 28px; text-align: center; }
.credential-band p { font-size: 8px; letter-spacing: .17em; margin: 0; text-transform: uppercase; }
.credential-band strong { font-family: "Cormorant Garamond", serif; font-size: 27px; font-weight: 600; }
.credential-band > span { background: rgba(255,255,255,.45); height: 48px; margin: 0 20px; width: 1px; }

.projects-section { background: var(--brown-2); color: white; padding: clamp(92px, 10vw, 155px) clamp(24px, 5vw, 80px); }
.section-label-light { color: #d88a6c; }
.projects-heading { align-items: end; display: grid; gap: 70px; grid-template-columns: 1.2fr .8fr; margin: 0 auto 48px; max-width: 1380px; }
.projects-heading h2 { max-width: 820px; }
.projects-heading > p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; margin: 0 0 8px; max-width: 500px; }
.project-filters { border-bottom: 1px solid rgba(255,255,255,.15); display: flex; gap: 8px; margin: 0 auto 30px; max-width: 1380px; }
.project-filters button { background: transparent; border: 0; border-bottom: 2px solid transparent; color: rgba(255,255,255,.55); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .13em; padding: 13px 16px; text-transform: uppercase; }
.project-filters button.is-active { border-color: var(--terracotta); color: white; }
.projects-grid { display: grid; gap: 18px; grid-auto-rows: 320px; grid-template-columns: repeat(3, 1fr); margin: 0 auto; max-width: 1380px; }
.project-card { overflow: hidden; position: relative; }
.project-card img { height: 100%; object-fit: cover; object-position: var(--project-position, center); transition: transform 800ms cubic-bezier(.2,.7,.2,1); width: 100%; }
.project-card:hover img { transform: scale(1.045); }
.project-featured { grid-column: span 2; grid-row: span 2; }
.project-shade { background: linear-gradient(0deg, rgba(16,9,7,.82), transparent 58%); inset: 0; position: absolute; }
.project-meta { bottom: 0; left: 0; padding: 26px; position: absolute; right: 0; }
.project-meta span { color: #e1a28a; font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.project-meta h3 { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 600; margin: 8px 0 3px; }
.project-featured .project-meta h3 { font-size: clamp(38px, 4vw, 58px); }
.project-meta p { color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .08em; margin: 0; text-transform: uppercase; }


.video-showcase-section {
  background: var(--paper);
  padding: clamp(92px, 10vw, 150px) clamp(24px, 7vw, 112px);
}
.video-showcase-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr .8fr;
  margin: 0 auto 58px;
  max-width: 1380px;
}
.video-showcase-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 5.2vw, 82px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
  max-width: 900px;
}
.video-showcase-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 8px;
  max-width: 500px;
}
.video-showcase-grid {
  display: grid;
  gap: clamp(24px, 3vw, 44px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1380px;
}
.video-story { min-width: 0; }
.video-frame {
  aspect-ratio: 16 / 9;
  background: #171310;
  overflow: hidden;
  position: relative;
}
.video-frame video {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 250ms ease;
  width: 100%;
}
.video-story:hover .video-frame video { transform: scale(1.012); }
.video-frame-shade {
  background: linear-gradient(180deg, rgba(16,10,7,.02) 35%, rgba(16,10,7,.58) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.video-toggle {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.9);
  border: 0;
  bottom: 22px;
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 10px;
  left: 22px;
  letter-spacing: .13em;
  padding: 13px 17px;
  position: absolute;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  z-index: 2;
}
.video-toggle:hover { background: var(--terracotta); color: white; transform: translateY(-2px); }
.video-toggle-icon {
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  display: block;
  height: 0;
  width: 0;
}
.video-toggle.is-playing .video-toggle-icon {
  border: 0;
  height: 10px;
  position: relative;
  width: 9px;
}
.video-toggle.is-playing .video-toggle-icon::before,
.video-toggle.is-playing .video-toggle-icon::after {
  background: currentColor;
  content: "";
  height: 10px;
  position: absolute;
  top: 0;
  width: 3px;
}
.video-toggle.is-playing .video-toggle-icon::before { left: 0; }
.video-toggle.is-playing .video-toggle-icon::after { right: 0; }
.video-index {
  color: rgba(255,255,255,.82);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 2;
}
.video-story-copy { padding: 25px 4px 0; }
.video-story-copy p {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  margin: 0 0 9px;
  text-transform: uppercase;
}
.video-story-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 2.8vw, 43px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.video-story-copy span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.7;
}

.process-section { align-items: start; display: grid; gap: clamp(60px, 10vw, 150px); grid-template-columns: .85fr 1.15fr; padding: clamp(94px, 11vw, 170px) clamp(24px, 7vw, 112px); }
.process-intro { position: sticky; top: 150px; }
.process-intro > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.85; margin: 28px 0 0; max-width: 500px; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { border-top: 1px solid var(--line); display: grid; gap: 34px; grid-template-columns: 60px 1fr; padding: 32px 0 44px; }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--terracotta); font-family: "Cormorant Garamond", serif; font-size: 22px; }
.process-list h3 { font-family: "Cormorant Garamond", serif; font-size: 36px; font-weight: 600; margin: 0 0 12px; }
.process-list p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0; max-width: 600px; }

.about-section { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 780px; }
.about-image { overflow: hidden; position: relative; }
.about-image > img { height: 100%; object-fit: cover; object-position: 42% center; width: 100%; }
.about-badge { align-items: center; background: var(--terracotta); bottom: 0; color: white; display: flex; gap: 18px; padding: 28px 34px; position: absolute; right: 0; }
.about-badge strong { font-family: "Cormorant Garamond", serif; font-size: 56px; font-weight: 600; line-height: .8; }
.about-badge span { font-size: 8px; letter-spacing: .13em; line-height: 1.5; max-width: 92px; text-transform: uppercase; }
.about-copy { align-content: center; background: var(--brown); color: white; display: grid; padding: clamp(65px, 7vw, 112px); }
.about-copy h2 { font-size: clamp(50px, 5vw, 76px); }
.about-copy > p:not(.section-label) { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.85; margin: 27px 0 0; }
.about-stats { border-top: 1px solid rgba(255,255,255,.16); display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 50px; padding-top: 30px; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: "Cormorant Garamond", serif; font-size: 40px; font-weight: 600; }
.about-stats span { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }

.testimonials-section { background: var(--paper); padding: clamp(94px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.testimonials-heading { display: grid; gap: 45px; grid-template-columns: .45fr 1.55fr; margin-bottom: 66px; }
.testimonials-heading h2 { max-width: 950px; }
.testimonials-grid { display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr); background: var(--line); }
.testimonials-grid figure { background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; margin: 0; min-height: 370px; padding: clamp(30px, 4vw, 54px); }
.testimonials-grid figure > span { color: var(--terracotta); font-size: 9px; font-weight: 600; letter-spacing: .15em; }
.testimonials-grid blockquote { font-family: "Cormorant Garamond", serif; font-size: clamp(25px, 2.25vw, 35px); line-height: 1.28; margin: 35px 0 48px; }
.testimonials-grid figcaption { border-top: 1px solid var(--line); display: flex; flex-direction: column; padding-top: 18px; }
.testimonials-grid figcaption strong { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.testimonials-grid figcaption small { color: var(--muted); font-size: 8px; letter-spacing: .13em; margin-top: 5px; text-transform: uppercase; }

.areas-section { align-items: center; display: grid; gap: clamp(50px, 9vw, 140px); grid-template-columns: .9fr 1.1fr; padding: clamp(95px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list span { border: 1px solid var(--sand); font-family: "Cormorant Garamond", serif; font-size: 22px; padding: 14px 19px; }

.faq-section { background: var(--ivory-2); display: grid; gap: clamp(60px, 10vw, 150px); grid-template-columns: .7fr 1.3fr; padding: clamp(94px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.faq-intro { position: sticky; top: 150px; }
.faq-intro > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 28px 0 0; max-width: 430px; }
.faq-list details { border-top: 1px solid #b9a58e; }
.faq-list details:last-child { border-bottom: 1px solid #b9a58e; }
.faq-list summary { align-items: center; cursor: pointer; display: flex; font-family: "Cormorant Garamond", serif; font-size: 27px; font-weight: 600; gap: 22px; justify-content: space-between; list-style: none; padding: 27px 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--terracotta); font-family: "Inter", sans-serif; font-size: 22px; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: -6px 55px 28px 0; }

.contact-section { background: var(--brown-2); color: white; display: grid; gap: clamp(60px, 9vw, 140px); grid-template-columns: .85fr 1.15fr; padding: clamp(95px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.contact-intro > p:not(.section-label) { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.85; margin: 30px 0 0; max-width: 540px; }
.contact-details { border-top: 1px solid rgba(255,255,255,.17); display: grid; gap: 20px; margin-top: 52px; padding-top: 28px; }
.contact-details a, .contact-details p { font-family: "Cormorant Garamond", serif; font-size: 24px; margin: 0; }
.contact-details span { color: #c2a18d; display: block; font-family: "Inter", sans-serif; font-size: 8px; letter-spacing: .16em; margin-bottom: 5px; text-transform: uppercase; }
.contact-socials { display: flex; gap: 10px; margin-top: 28px; }
.contact-socials a { align-items: center; border: 1px solid rgba(255,255,255,.23); display: inline-flex; font-size: 9px; font-weight: 600; gap: 8px; letter-spacing: .12em; padding: 12px 16px; text-transform: uppercase; }
.estimate-form { background: var(--paper); color: var(--charcoal); padding: clamp(30px, 5vw, 64px); }
.hidden-field { display: none; }
.form-heading { border-bottom: 1px solid var(--line); margin-bottom: 34px; padding-bottom: 24px; }
.form-heading span { font-family: "Cormorant Garamond", serif; font-size: 35px; font-weight: 600; }
.form-heading p { color: var(--muted); font-size: 12px; margin: 7px 0 0; }
.field-row { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.estimate-form label { display: flex; flex-direction: column; font-size: 8px; font-weight: 600; gap: 9px; letter-spacing: .14em; margin-bottom: 24px; text-transform: uppercase; }
.estimate-form input, .estimate-form select, .estimate-form textarea { background: transparent; border: 0; border-bottom: 1px solid #b9a58e; border-radius: 0; color: var(--charcoal); font-size: 14px; letter-spacing: 0; outline: 0; padding: 11px 0 13px; resize: vertical; text-transform: none; width: 100%; }
.estimate-form textarea { min-height: 120px; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--terracotta); }
.form-submit { align-items: center; background: var(--terracotta); border: 0; color: white; cursor: pointer; display: flex; font-size: 10px; font-weight: 600; justify-content: space-between; letter-spacing: .1em; min-height: 62px; padding: 0 22px; text-transform: uppercase; transition: background 180ms ease; width: 100%; }
.form-submit:hover { background: var(--terracotta-dark); }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-note, .form-status { color: var(--muted); font-size: 9px; line-height: 1.55; margin: 12px 0 0; }
.form-status.success { color: #4c714a; font-weight: 600; }
.form-status.error { color: #a23c32; font-weight: 600; }

.site-footer { background: linear-gradient(180deg, #171412 0%, #120f0d 100%); color: white; display: grid; gap: 54px; grid-template-columns: 2fr 1fr 1.25fr 1fr; padding: 76px clamp(24px, 7vw, 112px) 30px; }
.footer-brand img { height: auto; max-width: 290px; width: 100%; display:block; filter: drop-shadow(0 10px 24px rgba(0,0,0,.38)); }
.footer-brand { align-self: start; }
.footer-brand::before { content: ""; display:block; width: 62px; height: 2px; background: linear-gradient(90deg, #d06f51, rgba(208,111,81,0)); margin-bottom: 22px; }
.footer-brand img { margin-bottom: 18px; }
.footer-brand p { margin-top: 0; }
.footer-brand p { color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.7; max-width: 340px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a { border-color: rgba(255,255,255,.18); }
.site-footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.site-footer strong { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .17em; margin-bottom: 8px; text-transform: uppercase; }
.site-footer a, .site-footer > div > span { color: rgba(255,255,255,.75); font-size: 11px; line-height: 1.45; }
.site-footer a:hover { color: white; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 9px; grid-column: 1 / -1; letter-spacing: .04em; margin: 12px 0 0; padding-top: 24px; text-align: center; }

.floating-call { align-items: center; background: var(--terracotta); bottom: 16px; box-shadow: var(--shadow); color: white; display: none; font-size: 9px; font-weight: 600; justify-content: space-between; left: 16px; letter-spacing: .12em; padding: 16px 18px; position: fixed; right: 16px; text-transform: uppercase; z-index: 90; }

@media (max-width: 1200px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { background: transparent; border: 0; display: grid; gap: 7px; height: 46px; justify-self: end; place-content: center; width: 46px; }
  .menu-toggle span { background: var(--charcoal); display: block; height: 1px; transition: transform 180ms ease; width: 27px; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { background: var(--paper); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; left: 0; opacity: 0; padding: 24px clamp(24px, 6vw, 72px) 34px; pointer-events: none; position: absolute; right: 0; top: 112px; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease; }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav > a { border-bottom: 1px solid var(--line); font-family: "Cormorant Garamond", serif; font-size: 28px; padding: 11px 0; }
  .mobile-socials { display: flex; gap: 20px; padding-top: 20px; }
  .mobile-socials a { font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
  .hero { grid-template-columns: 54% 46%; }
  .hero-content { padding-left: 54px; padding-right: 54px; }
  .hero h1 { font-size: clamp(66px, 7vw, 92px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-featured { grid-column: span 2; }
  .about-copy { padding: 70px 54px; }
  .site-footer { grid-template-columns: 1.7fr repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .video-showcase-heading { display: block; }
  .video-showcase-heading > p { margin-top: 28px; }
  .video-showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .video-showcase-section { padding: 84px 22px; }
  .video-showcase-heading { margin-bottom: 42px; }
  .video-frame { aspect-ratio: 16 / 10; }
  .video-toggle { bottom: 14px; left: 14px; padding: 11px 14px; }
  .video-index { right: 15px; top: 12px; }

  html { scroll-padding-top: 88px; }
  .site-header { height: 88px; padding: 0 20px; }
  .brand img { height: 72px; width: 174px; }
  .mobile-nav { top: 88px; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-media { min-height: 58svh; }
  .hero-media > img, .hero-video { object-position: 50% 50%; }
  .hero-content { padding: 64px 24px 72px; }
  .hero-content::before { display: none; }
  .hero h1 { font-size: clamp(62px, 17vw, 84px); }
  .hero-proof { gap: 12px; margin-top: 52px; }
  .hero-proof strong { font-size: 31px; }
  .intro-section { display: block; padding: 88px 22px; }
  .intro-section h2 { margin: 26px 0; }
  .services-section, .projects-section, .process-section, .testimonials-section, .areas-section, .faq-section, .contact-section { padding: 84px 22px; }
  .section-heading, .projects-heading, .testimonials-heading { display: block; margin-bottom: 46px; }
  .section-heading > p, .projects-heading > p { margin-top: 27px; }
  .intro-section h2, .section-heading h2, .projects-heading h2, .process-intro h2, .about-copy h2, .testimonials-heading h2, .areas-section h2, .faq-intro h2, .contact-intro h2 { font-size: 49px; }
  .services-grid { display: block; }
  .service-card { margin-bottom: 58px; }
  .service-card:last-child { margin-bottom: 0; }
  .service-image { aspect-ratio: 4 / 4.25; }
  .credential-band { align-items: flex-start; flex-direction: column; gap: 7px; padding: 38px 24px; text-align: left; }
  .credential-band > span { height: 1px; margin: 13px 0; width: 54px; }
  .project-filters { overflow-x: auto; }
  .project-filters button { white-space: nowrap; }
  .projects-grid { display: block; }
  .project-card, .project-featured { height: 450px; margin-bottom: 18px; }
  .process-section { display: block; }
  .process-intro, .faq-intro { position: static; }
  .process-list { margin-top: 52px; }
  .about-section { display: block; min-height: 0; }
  .about-image { height: 620px; }
  .about-copy { padding: 84px 24px; }
  .testimonials-grid { display: block; background: transparent; }
  .testimonials-grid figure { border-bottom: 1px solid var(--line); min-height: 330px; }
  .areas-section { display: block; }
  .area-list { margin-top: 42px; }
  .faq-section { display: block; }
  .faq-list { margin-top: 52px; }
  .faq-list summary { font-size: 23px; }
  .contact-section { display: block; }
  .estimate-form { margin-top: 54px; padding: 34px 24px; }
  .field-row { display: block; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 62px 24px 92px; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-call { display: flex; }
}

@media (max-width: 480px) {
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 12px; }
  .hero-proof div:last-child { border-bottom: 0; }
  .about-image { height: 520px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats div { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 16px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand, .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
.project-card[hidden] { display: none !important; }
