:root {
  --ink: #171513;
  --ink-2: #2a241f;
  --paper: #f5f0e8;
  --paper-2: #ebe2d7;
  --ivory: #fffaf2;
  --brass: #b98b5f;
  --sage: #6d7f69;
  --clay: #9b6b55;
  --stone: #c8c1b4;
  --glass: rgba(255, 250, 242, 0.72);
  --line: rgba(42, 36, 31, 0.14);
  --shadow: 0 24px 70px rgba(23, 21, 19, 0.18);
  --soft-shadow: 0 14px 36px rgba(23, 21, 19, 0.11);
  --radius: 8px;
  --max: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(185, 139, 95, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(42, 36, 31, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 250, 242, 0.15);
  background: rgba(23, 21, 19, 0.78);
  color: var(--ivory);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-tag {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 250, 242, 0.1);
  color: var(--ivory);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 242, 0.25);
  border-radius: 999px;
  padding: 11px 15px;
  background: rgba(185, 139, 95, 0.2);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.page-main {
  overflow: hidden;
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0;
}

.section.compact {
  padding: clamp(48px, 6vw, 72px) 0;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vh, 72px) 0 clamp(30px, 5vh, 64px);
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.92) 0%, rgba(23, 21, 19, 0.78) 38%, rgba(23, 21, 19, 0.16) 74%),
    url("../img/hero-interior.png") center center / cover no-repeat;
  color: var(--ivory);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding: clamp(12px, 2vh, 28px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.32rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 670px;
  margin-top: clamp(16px, 2.5vh, 24px);
  color: rgba(255, 250, 242, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  overflow-wrap: break-word;
}

.dark-lead {
  max-width: 710px;
  margin-top: 18px;
  color: rgba(42, 36, 31, 0.72);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3.5vh, 34px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  max-width: 100%;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brass);
  color: #171513;
  box-shadow: 0 16px 34px rgba(185, 139, 95, 0.22);
}

.btn-outline {
  border-color: rgba(255, 250, 242, 0.32);
  background: rgba(255, 250, 242, 0.08);
  color: var(--ivory);
}

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}

.hero-glass {
  align-self: center;
  justify-self: end;
  width: min(100%, 330px);
  min-width: 0;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 250, 242, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stat {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: clamp(12px, 1.8vh, 16px) 0;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.hero-stat:first-child {
  border-top: 0;
}

.hero-stat strong {
  font-size: 1.7rem;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
  overflow-wrap: break-word;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.78;
}

.shape-plan {
  top: 18px;
  right: 18%;
  width: 172px;
  height: 112px;
  border: 1px solid rgba(255, 250, 242, 0.38);
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 250, 242, 0.35) 46% 48%, transparent 48%),
    linear-gradient(rgba(255, 250, 242, 0.35) 34%, transparent 34% 38%, rgba(255, 250, 242, 0.35) 38% 40%, transparent 40%);
}

.shape-lamp {
  right: 5%;
  bottom: 34%;
  width: 96px;
  height: 150px;
  border-top: 2px solid rgba(185, 139, 95, 0.82);
  border-radius: 50% 50% 0 0;
}

.shape-lamp::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  width: 2px;
  height: 132px;
  background: rgba(185, 139, 95, 0.82);
}

.shape-lamp::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 54px;
  height: 20px;
  border: 2px solid rgba(185, 139, 95, 0.82);
  border-top: 0;
  border-radius: 0 0 40px 40px;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  color: rgba(42, 36, 31, 0.72);
}

.text-stack {
  display: grid;
  gap: 18px;
  color: rgba(42, 36, 31, 0.76);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 250, 242, 0.56);
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(42, 36, 31, 0.66);
  font-size: 0.9rem;
}

.visual-panel {
  position: relative;
  min-height: 470px;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone);
}

.photo-frame.main {
  inset: 0 8% 7% 0;
}

.photo-frame.small {
  right: 0;
  bottom: 0;
  width: 44%;
  aspect-ratio: 0.84;
  border: 8px solid var(--paper);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheet-crop {
  width: 100%;
  height: 100%;
  background-image: url("../img/gallery-sheet.png");
  background-size: 300% 200%;
}

.crop-1 { background-position: 0% 0%; }
.crop-2 { background-position: 50% 0%; }
.crop-3 { background-position: 100% 0%; }
.crop-4 { background-position: 0% 100%; }
.crop-5 { background-position: 50% 100%; }
.crop-6 { background-position: 100% 100%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.process-step,
.faq-item,
.contact-panel,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.66);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
  background: rgba(255, 250, 242, 0.9);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(109, 127, 105, 0.13);
  color: var(--sage);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.service-card p,
.process-step p,
.faq-item p {
  color: rgba(42, 36, 31, 0.69);
}

.dark-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 139, 95, 0.15), transparent 28%),
    linear-gradient(135deg, #171513, #2a241f);
  color: var(--ivory);
}

.dark-band .kicker {
  color: var(--brass);
}

.dark-band .section-head p,
.dark-band .dark-lead,
.dark-band .text-stack {
  color: rgba(255, 250, 242, 0.72);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid rgba(42, 36, 31, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 250, 242, 0.62);
  color: rgba(42, 36, 31, 0.76);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--brass);
  background: var(--ink);
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 132px;
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  grid-column: span 4;
  grid-row: span 2;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.project-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.project-card.wide {
  grid-column: span 8;
}

.project-card.tall {
  grid-row: span 3;
}

.project-card .sheet-crop {
  transition: transform 600ms ease;
}

.project-card:hover .sheet-crop {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(23, 21, 19, 0.88));
  color: var(--ivory);
  transform: translateY(10px);
  transition: transform 220ms ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.process-step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 32px;
  color: rgba(185, 139, 95, 0.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-panel {
  padding: 26px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.map-embed {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: var(--paper-2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.18) contrast(0.95);
}

.page-hero {
  padding: 96px 0 70px;
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.93), rgba(42, 36, 31, 0.82)),
    url("../img/hero-interior.png") center / cover no-repeat;
  color: var(--ivory);
}

.page-hero.tall {
  min-height: 520px;
  display: grid;
  align-items: end;
}

.page-hero.about-hero {
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.94), rgba(42, 36, 31, 0.7)),
    url("../img/hero-interior.png") center / cover no-repeat;
}

.page-hero.services-hero,
.page-hero.contact-hero {
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.92), rgba(42, 36, 31, 0.76)),
    url("../img/gallery-sheet.png") center / cover no-repeat;
}

.page-hero.projects-hero,
.page-hero.process-hero,
.page-hero.faq-hero {
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.9), rgba(42, 36, 31, 0.74)),
    url("../img/gallery-sheet.png") center / cover no-repeat;
}

.page-hero .dark-lead {
  color: rgba(255, 250, 242, 0.74);
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 780px;
  margin-top: 34px;
}

.hero-meta {
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 250, 242, 0.1);
  backdrop-filter: blur(14px);
}

.hero-meta strong {
  display: block;
  color: var(--brass);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-meta span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.9rem;
}

.statement {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
}

.statement blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(42, 36, 31, 0.76);
}

.feature svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--sage);
}

.value-grid,
.reason-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card,
.reason-card,
.material-card,
.story-card,
.form-card,
.quote-card,
.before-after-card,
.social-card,
.work-hour {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.66);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.value-card,
.reason-card,
.material-card,
.story-card,
.quote-card,
.before-after-card,
.social-card,
.work-hour {
  padding: 24px;
}

.value-card p,
.reason-card p,
.story-card p,
.quote-card p,
.material-card p,
.work-hour p {
  color: rgba(42, 36, 31, 0.7);
}

.value-card strong,
.reason-card strong,
.material-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.success-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.12);
}

.success-item {
  padding: 28px;
  background: rgba(255, 250, 242, 0.06);
}

.success-item strong {
  display: block;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.success-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.72);
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 242, 0.66);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.service-visual {
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.service-detail-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 10px 10px 10px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border: 1px solid rgba(42, 36, 31, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 250, 242, 0.56);
  color: rgba(42, 36, 31, 0.72);
  font-size: 0.86rem;
}

.project-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.before-after-visual {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.before-after-card h3 {
  margin-bottom: 14px;
}

.project-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--brass);
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 34px;
  width: 1px;
  background: rgba(185, 139, 95, 0.38);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 139, 95, 0.42);
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.timeline-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 250, 242, 0.7);
}

.timeline-content p {
  margin-top: 10px;
  color: rgba(42, 36, 31, 0.72);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.7);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 20px 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.accordion-trigger svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  padding: 0 22px 22px;
  color: rgba(42, 36, 31, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(42, 36, 31, 0.72);
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(42, 36, 31, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(185, 139, 95, 0.13);
}

.form-card {
  padding: 28px;
}

.work-hours {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.work-hour {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-pill,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 250, 242, 0.76);
}

.footer {
  padding: 58px 0 30px;
}

.footer {
  background: #171513;
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr 0.9fr;
  gap: 30px;
}

.footer p,
.footer a {
  color: rgba(255, 250, 242, 0.7);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cta-band {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.92), rgba(42, 36, 31, 0.82)),
    url("../img/hero-interior.png") center / cover no-repeat;
  color: var(--ivory);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  max-width: 610px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.72);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.9rem;
}

.footer-credit {
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.5);
  font-size: 0.78rem;
}

.footer-credit a {
  color: rgba(255, 250, 242, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-contact {
  position: fixed;
  right: 18px;
  top: 42%;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.quick-contact a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.quick-contact a:hover {
  transform: translateY(-3px);
}

.quick-phone {
  background: var(--ink);
  color: var(--ivory);
}

.quick-whatsapp {
  background: #25d366;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

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

  .gallery-grid {
    grid-auto-rows: 118px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .nav-wrap {
    min-height: var(--header-h);
  }

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

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(23, 21, 19, 0.96);
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
    transform: translateY(-125%);
    transition: transform 220ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: 0;
    padding: 13px 4px;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    align-items: center;
    padding: clamp(30px, 5vh, 54px) 0 clamp(28px, 5vh, 48px);
    background:
      linear-gradient(180deg, rgba(23, 21, 19, 0.88), rgba(23, 21, 19, 0.58) 48%, rgba(23, 21, 19, 0.88)),
      url("../img/hero-interior.png") 58% center / cover no-repeat;
  }

  .hero-inner,
  .intro-grid,
  .split-grid,
  .statement,
  .contact-grid,
  .project-story-grid,
  .service-detail,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: clamp(18px, 4vh, 42px) 0 6px;
  }

  .hero-glass {
    justify-self: stretch;
    width: 100%;
    align-self: start;
  }

  .shape-plan,
  .shape-lamp {
    display: none;
  }

  .section {
    padding: clamp(52px, 9vw, 72px) 0;
  }

  .section-head {
    display: grid;
    gap: 14px;
  }

  .visual-panel {
    min-height: 380px;
  }

  .metric-row,
  .faq-list,
  .hero-meta-grid,
  .value-grid,
  .reason-grid,
  .material-grid,
  .success-strip,
  .before-after {
    grid-template-columns: 1fr;
  }

  .service-detail-body {
    padding: 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project-card,
  .project-card.wide,
  .project-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .quick-contact {
    right: 12px;
    top: auto;
    bottom: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .nav-wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(31px, 8.6vw, 36px);
    line-height: 1.02;
    max-width: 100%;
  }

  .lead {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(22px, 4vh, 36px);
    padding-bottom: clamp(82px, 12vh, 108px);
    background-position: 62% center;
  }

  .hero-inner {
    gap: 18px;
    width: min(var(--max), calc(100% - 48px));
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1,
  .hero .lead,
  .hero .actions,
  .hero .hero-glass {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-glass {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
  }

  .hero-stat {
    border-top: 1px solid rgba(255, 250, 242, 0.18);
    padding: 9px 0;
  }

  .hero-stat:first-child {
    border-top: 0;
  }

  .hero-stat strong {
    font-size: 1.16rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .photo-frame.main {
    inset: 0 0 18% 0;
  }

  .photo-frame.small {
    width: 58%;
  }

  .quick-contact a {
    width: 46px;
    height: 46px;
  }

  .page-hero.tall {
    min-height: 480px;
  }

  .timeline {
    gap: 16px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    font-size: 1.12rem;
  }

  .timeline-content,
  .form-card,
  .value-card,
  .reason-card,
  .material-card,
  .story-card,
  .quote-card,
  .before-after-card {
    padding: 18px;
  }
}

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