: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,
.site-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.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: 8px;
  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: 8px;
  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: 16px;
  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(44px, 5.4vw, 78px);
  line-height: 1;
}

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: 8px;
  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: 430px;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone);
}

.photo-frame.main {
  inset: 0;
}

.photo-frame.small {
  display: none;
}
.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 {
  position: relative;
  overflow: hidden;
  height: 278px;
  min-height: 278px;
  grid-column: auto;
  grid-row: auto;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.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);
}

.service-card.service-interior {
  background: linear-gradient(145deg, rgba(254, 244, 219, 0.94), rgba(231, 194, 132, 0.84));
  border-color: rgba(176, 121, 48, 0.28);
}

.service-card.service-furniture {
  background: linear-gradient(145deg, rgba(246, 228, 194, 0.94), rgba(207, 160, 96, 0.84));
  border-color: rgba(154, 98, 37, 0.3);
}

.service-card.service-home {
  background: linear-gradient(145deg, rgba(238, 205, 160, 0.94), rgba(181, 124, 66, 0.84));
  border-color: rgba(126, 79, 34, 0.32);
}

.service-card.service-office {
  background: linear-gradient(145deg, rgba(226, 185, 126, 0.94), rgba(142, 91, 45, 0.84));
  border-color: rgba(99, 61, 29, 0.34);
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.88));
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(109, 127, 105, 0.13);
  color: var(--sage);
}

.service-interior .icon-box {
  background: rgba(176, 121, 48, 0.14);
  color: #9a641f;
}

.service-furniture .icon-box {
  background: rgba(154, 98, 37, 0.15);
  color: #7f4f1f;
}

.service-home .icon-box {
  background: rgba(126, 79, 34, 0.15);
  color: #6f3f1a;
}

.service-office .icon-box {
  background: rgba(99, 61, 29, 0.16);
  color: #5c3518;
}

.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: 8px;
  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(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 278px;
  min-height: 278px;
  grid-column: auto;
  grid-row: auto;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.project-card a {
  display: block;
  width: 100%;
  height: 100%;
}


.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}
.project-card.wide {
  grid-column: auto;
}

.project-card.tall {
  grid-row: auto;
}

.project-card .sheet-crop {
  height: 100%;
  transition: transform 600ms ease;
}

.project-card:hover .sheet-crop,
.project-card:hover img {
  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: 78px 0 58px;
  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: 390px;
  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 rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 242, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.service-visual {
  height: 300px;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.service-detail-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 10px 10px 10px 0;
}


.dark-band .service-detail-body p {
  color: rgba(255, 250, 242, 0.78);
}

.dark-band .tag-list span {
  border-color: rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.86);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border: 1px solid rgba(42, 36, 31, 0.14);
  border-radius: 8px;
  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-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.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: 16px;
  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;
}

.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-links strong {
  color: var(--ivory);
}

.footer-actions {
  display: grid;
  gap: 9px;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: 150px;
  max-width: 100%;
  min-height: 36px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 7px;
  padding: 8px 11px;
  color: var(--ivory) !important;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.footer-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.footer-action.phone {
  border-color: rgba(37, 99, 235, 0.38);
  background: #2563eb;
  color: #fff !important;
}

.footer-action.whatsapp {
  border-color: rgba(37, 211, 102, 0.36);
  background: #25d366;
  color: #fff !important;
}

.footer-action.instagram {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
  color: #fff !important;
}

.footer-action.map {
  border-color: rgba(239, 68, 68, 0.38);
  background: #ef4444;
  color: #fff !important;
}

.footer-address {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.58) !important;
  font-size: 0.86rem;
  line-height: 1.45;
}

.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: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  z-index: 9999;
  width: 54px;
  height: 54px;
}

.quick-contact a,
.quick-toggle {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 21, 19, 0.18);
  transition: transform 220ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

.quick-contact svg {
  width: 23px;
  height: 23px;
  display: block;
  flex: 0 0 auto;
}

.quick-contact a:hover,
.quick-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 21, 19, 0.22);
  filter: saturate(1.04);
}

.quick-toggle {
  border: 1px solid transparent;
  background:
    linear-gradient(#171513, #171513) padding-box,
    linear-gradient(120deg, #22d3ee, #a855f7, #f43f5e, #22c55e, #22d3ee) border-box;
  background-size: 100% 100%, 260% 260%;
  cursor: pointer;
  animation: quickToggleNeon 4s linear infinite;
}

.quick-toggle svg {
  width: 25px;
  height: 25px;
  animation: quickToggleSpin 5s linear infinite;
  transform-origin: center;
}


@keyframes quickToggleSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes quickToggleNeon {
  to {
    background-position: 0 0, 260% 0;
  }
}
.quick-contact a {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0) scale(0.88);
}

.quick-contact.open a {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(calc(var(--quick-step) * -65px)) scale(1);
}

.quick-contact.open a:hover {
  transform: translateY(calc(var(--quick-step) * -65px)) scale(1.04);
}

.quick-contact a:nth-child(1) { --quick-step: 3; }
.quick-contact a:nth-child(2) { --quick-step: 2; }
.quick-contact a:nth-child(3) { --quick-step: 1; }

.quick-phone {
  background: #2563eb;
}




.quick-phone svg {
  width: 27px;
  height: 27px;
}

.quick-whatsapp {
  background: #25d366;
}

.quick-whatsapp svg {
  width: 33px;
  height: 33px;
}




.quick-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.quick-instagram svg {
  width: 29px;
  height: 29px;
}


.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);
  }
}
@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;
  }

  .service-visual {
    height: 240px;
    min-height: 240px;
  }


.dark-band .service-detail-body p {
  color: rgba(255, 250, 242, 0.78);
}

.dark-band .tag-list span {
  border-color: rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.86);
}
}
@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .nav-wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex-basis: 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;
  }

.quick-contact a,
.quick-toggle {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .quick-contact svg {
    width: 22px;
    height: 22px;
  }

  .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;
  }
}

.page-hero .eyebrow {
  display: none;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
}

.page-hero .actions {
  margin-top: 28px;
}

.cta-inner .btn,
.page-hero .btn {
  min-width: 166px;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.project-card {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 21, 19, 0.12);
  background: var(--ink);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 242, 0.16);
  pointer-events: none;
}

.project-overlay {
  padding: 20px;
}

.project-detail-link {
  width: fit-content;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 7px;
  padding: 7px 10px;
  background: rgba(255, 250, 242, 0.12);
  color: var(--ivory);
  font-style: normal;
  font-size: 0.86rem;
}

.gallery-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-note {
  min-height: 190px;
  border: 1px solid rgba(42, 36, 31, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.62);
  box-shadow: var(--soft-shadow);
}

.gallery-note strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 7px;
  background: rgba(185, 139, 95, 0.18);
  color: var(--brass);
}

.gallery-note p {
  margin-top: 12px;
  color: rgba(42, 36, 31, 0.72);
}

@media (max-width: 820px) {
  .page-hero {
    padding: 54px 0 42px;
  }

  .page-hero.tall {
    min-height: 310px;
  }

  .page-hero h1 {
    font-size: clamp(31px, 8.4vw, 42px);
  }

  .cta-inner,
  .gallery-note-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner .btn,
  .page-hero .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-action {
    width: 100%;
  }
}

.footer-action.mail {
  border-color: rgba(255, 250, 242, 0.24);
  background: #ffffff;
  color: #2a241f !important;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
}

.cta-inner .btn {
  max-width: 220px;
  padding-inline: 18px;
}

@media (max-width: 820px) {
  .cta-inner .btn {
    max-width: none;
  }
}



@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 278px;
    min-height: 278px;
  }
}




.local-map {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 28, 24, 0.88), rgba(111, 84, 54, 0.76)), url("../img/gallery-sheet.png") center / cover no-repeat;
}

.local-map > div {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  color: #fff;
}

.local-map strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.local-map span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
}

.quick-contact a:nth-child(1) { --quick-step: 3; }`n.quick-contact a:nth-child(2) { --quick-step: 2; }`n.quick-contact a:nth-child(3) { --quick-step: 1; }

.scroll-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #171513;
  box-shadow: 0 10px 24px rgba(23, 21, 19, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 21, 19, 0.22);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 780px) {
  .scroll-top {
    left: 14px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}



.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.region-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(50, 42, 34, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(36, 28, 22, 0.08);
}

.region-card strong {
  color: var(--copper);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.region-card h3 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

@media (max-width: 780px) {
  .region-grid {
    grid-template-columns: 1fr;
  }
}
