﻿:root {
  --page-bg: #f3efe8;
  --surface: #f7f3ee;
  --surface-strong: #efe8de;
  --surface-dark: #171412;
  --surface-dark-soft: #211c18;
  --surface-dark-elevated: rgba(27, 23, 20, 0.86);
  --line: rgba(35, 29, 24, 0.12);
  --line-strong: rgba(215, 193, 162, 0.22);
  --text: #181512;
  --muted: #65594d;
  --text-inverse: #f6f1ea;
  --muted-inverse: rgba(246, 241, 234, 0.72);
  --sand: #d6c1a2;
  --sand-deep: #b89670;
  --forest: #33413e;
  --accent: #8f765d;
  --shadow-soft: 0 22px 60px rgba(21, 17, 14, 0.08);
  --shadow-strong: 0 30px 90px rgba(12, 10, 8, 0.18);
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 36px;
  --container: min(1200px, calc(100vw - 40px));
  --ease: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(214, 193, 162, 0.18), transparent 34%),
    linear-gradient(180deg, #f5f1eb 0%, #f0e9de 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 232, 0.72);
  border-bottom: 1px solid rgba(24, 21, 18, 0.06);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 239, 232, 0.9);
  box-shadow: 0 18px 40px rgba(18, 14, 11, 0.06);
  border-color: rgba(24, 21, 18, 0.1);
}

.header-shell,
.page-shell,
.footer-shell {
  width: var(--container);
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surface-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.brand-copy span {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 16px;
  color: var(--text);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list,
.subnav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-link,
.subnav-link {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--ease);
}

.nav-link::after,
.subnav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.subnav-link:hover,
.subnav-link[aria-current="page"] {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.subnav-link:hover::after,
.subnav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--ease), background var(--ease);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.language-bar {
  background: #211c18;
  color: var(--text-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-bar-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

.language-bar span {
  color: rgba(246, 241, 234, 0.72);
}

.language-bar div div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-bar a,
.language-bar strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
}

.language-bar a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 241, 234, 0.82);
}

.language-bar strong {
  background: var(--sand);
  color: #171412;
}

.translation-notice {
  padding: 22px 0;
  background: #efe8de;
  border-bottom: 1px solid rgba(24, 21, 18, 0.08);
}

.translation-notice .page-shell {
  display: grid;
  gap: 6px;
}

.translation-notice strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.translation-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: stretch;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.72) 0%, rgba(15, 12, 10, 0.46) 44%, rgba(15, 12, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(15, 12, 10, 0.16), rgba(15, 12, 10, 0.42));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.74);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(246, 241, 234, 0.34);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 22px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.93;
  color: var(--text-inverse);
}

.hero-intro {
  margin-top: 28px;
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: var(--muted-inverse);
}

.hero-actions,
.cta-row,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.button-primary {
  background: linear-gradient(135deg, #f0e4d2 0%, #d7bea0 100%);
  color: #16120f;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(24, 21, 18, 0.14);
}

.hero-aside,
.glass-panel,
.metric-card,
.quote-card,
.card,
.process-card,
.contact-card,
.form-panel,
.notice-panel,
.stat-panel,
.material-panel,
.faq-item,
.detail-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 18, 16, 0.44);
  color: var(--text-inverse);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-aside {
  padding: 28px;
  align-self: end;
}

.hero-aside h2,
.hero-aside h3 {
  font-size: 2rem;
}

.hero-aside p,
.hero-aside li {
  color: var(--muted-inverse);
  line-height: 1.75;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.hero-points li {
  display: flex;
  gap: 12px;
}

.hero-points span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(214, 193, 162, 0.12);
  color: var(--sand);
  font-size: 0.85rem;
}

.page-main {
  padding-bottom: 80px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(214, 193, 162, 0.1), transparent 26%),
    linear-gradient(180deg, #171412 0%, #1f1a16 100%);
  color: var(--text-inverse);
}

.section-soft {
  background: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(24, 21, 18, 0.06);
  border-bottom: 1px solid rgba(24, 21, 18, 0.06);
}

.page-shell {
  display: grid;
  gap: 32px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.section-heading p,
.lead,
.text-block p,
.card p,
.process-card p,
.material-panel p,
.contact-card p,
.quote-card p,
.detail-panel p,
.notice-panel p,
.faq-item p,
.form-intro,
.page-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.section-dark .section-heading p,
.section-dark .lead,
.section-dark .text-block p,
.section-dark .card p,
.section-dark .process-card p,
.section-dark .material-panel p,
.section-dark .quote-card p,
.section-dark .detail-panel p {
  color: var(--muted-inverse);
}

.intro-grid,
.grid-2,
.grid-3,
.grid-4,
.project-grid,
.services-grid,
.materials-grid,
.stats-grid,
.contact-grid,
.process-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.intro-grid,
.grid-2,
.contact-grid,
.detail-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.project-grid,
.services-grid,
.materials-grid,
.process-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.process-card,
.contact-card,
.quote-card,
.material-panel,
.detail-panel,
.notice-panel,
.form-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 21, 18, 0.08);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.section-dark .card,
.section-dark .process-card,
.section-dark .quote-card,
.section-dark .detail-panel,
.section-dark .notice-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.card h3,
.process-card h3,
.quote-card h3,
.material-panel h3,
.detail-panel h3,
.contact-card h3,
.notice-panel h3,
.form-panel h2,
.form-panel h3 {
  font-size: 2rem;
  line-height: 1.02;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-deep);
}

.project-card,
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  min-height: 520px;
  display: grid;
  align-content: end;
  background: #181411;
  box-shadow: var(--shadow-strong);
}

.project-card::before,
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.04), rgba(15, 12, 10, 0.74));
  z-index: 1;
}

.project-card img,
.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover img,
.image-card:hover img {
  transform: scale(1.04);
}

.project-card-content,
.image-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--text-inverse);
}

.project-card-content h3,
.image-card-content h3 {
  font-size: 2.3rem;
}

.portfolio-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.portfolio-feature-grid .project-card {
  min-height: 460px;
}

.portfolio-card-large {
  grid-row: span 2;
  min-height: 760px;
}

.portfolio-collection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-tile {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 0.9fr) auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-soft);
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-tile:hover img {
  transform: scale(1.035);
}

.portfolio-tile div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.portfolio-tile span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
}

.portfolio-tile h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.portfolio-tile p {
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-collection-dark .portfolio-tile {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-collection-dark .portfolio-tile p {
  color: var(--muted-inverse);
}

.search-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(24, 21, 18, 0.1);
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at top right, rgba(214, 193, 162, 0.28), transparent 30%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.search-panel label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-input-row input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(24, 21, 18, 0.14);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
}

.search-input-row input:focus {
  outline: 2px solid rgba(184, 150, 112, 0.42);
  outline-offset: 3px;
}

.search-hint,
.search-meta {
  color: var(--muted);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-suggestions button {
  border: 1px solid rgba(24, 21, 18, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.search-suggestions button:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 118, 93, 0.42);
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.search-results {
  display: grid;
  gap: 18px;
}

.search-result-card,
.search-empty {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(24, 21, 18, 0.08);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
}

.search-result-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.search-result-card h2 a {
  color: inherit;
  text-decoration: none;
}

.search-result-card p,
.search-empty p {
  color: var(--muted);
  line-height: 1.75;
}

.project-meta,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 241, 234, 0.78);
  font-size: 0.94rem;
}

.project-meta li,
.inline-meta li {
  position: relative;
  padding-left: 16px;
}

.project-meta li::before,
.inline-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
}

.stat-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(24, 21, 18, 0.08);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.stat-panel strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
}

.stat-panel span {
  color: var(--muted);
  line-height: 1.7;
}

.service-icon,
.process-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 118, 93, 0.1);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-button {
  border: 1px solid rgba(24, 21, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  min-height: 44px;
  padding: 0 18px;
  color: var(--muted);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}

.filter-button[aria-pressed="true"] {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: var(--text-inverse);
}

.page-hero,
.compact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #181411 0%, #231d18 100%);
  color: var(--text-inverse);
}

.page-hero::before,
.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(214, 193, 162, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(13, 11, 10, 0.32), rgba(13, 11, 10, 0.52));
}

.page-hero-shell,
.compact-hero-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 36px;
  align-items: end;
}

.compact-hero-shell {
  grid-template-columns: 1fr;
  padding-bottom: 60px;
}

.page-hero h1,
.compact-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p,
.compact-hero p {
  max-width: 700px;
  margin-top: 24px;
  line-height: 1.8;
  color: var(--muted-inverse);
}

.hero-visual-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

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

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.08), rgba(15, 12, 10, 0.62));
}

.hero-visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  color: rgba(246, 241, 234, 0.82);
  font-size: 0.96rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  font-size: 0.86rem;
  color: rgba(246, 241, 234, 0.62);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
}

.page-intro {
  display: grid;
  gap: 20px;
}

.material-swatch {
  display: grid;
  gap: 14px;
}

.swatch {
  height: 120px;
  border-radius: 20px;
}

.swatch.oak {
  background: linear-gradient(135deg, #92745c 0%, #b79678 100%);
}

.swatch.travertin {
  background: linear-gradient(135deg, #ddd1c4 0%, #c5b49d 100%);
}

.swatch.bronze {
  background: linear-gradient(135deg, #675545 0%, #9a7c61 100%);
}

.swatch.graphite {
  background: linear-gradient(135deg, #1b1b1b 0%, #4a4a4a 100%);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 21, 18, 0.08);
  box-shadow: var(--shadow-soft);
}

.timeline-step {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: var(--sand-deep);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.15;
}

.quote-author {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section-dark .quote-author {
  color: rgba(246, 241, 234, 0.74);
}

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

.field,
.field-full {
  display: grid;
  gap: 10px;
}

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

label {
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(24, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.82);
  min-height: 56px;
  padding: 16px 18px;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: rgba(143, 118, 93, 0.72);
  box-shadow: 0 0 0 4px rgba(143, 118, 93, 0.12);
}

.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.success-message {
  display: none;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(82, 124, 100, 0.12);
  border: 1px solid rgba(82, 124, 100, 0.22);
  color: #264637;
}

.success-message.is-visible {
  display: block;
}

.contact-list,
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li,
.detail-list li {
  padding-top: 14px;
  border-top: 1px solid rgba(24, 21, 18, 0.08);
}

.contact-list li:first-child,
.detail-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.project-detail-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.project-story {
  display: grid;
  gap: 24px;
}

.project-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 0.7fr;
}

.project-gallery .image-card:first-child {
  min-height: 620px;
}

.project-gallery-stack {
  display: grid;
  gap: 18px;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 21, 18, 0.08);
}

.project-nav a {
  color: var(--muted);
}

.project-nav strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--text);
}

.faq-item {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 21, 18, 0.08);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
}

.faq-item p {
  padding: 0 24px 24px;
}

.footer {
  padding: 72px 0 48px;
  background: #14110f;
  color: var(--text-inverse);
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-top,
.footer-links {
  display: grid;
  gap: 24px;
}

.footer-top {
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer p,
.footer a,
.footer li {
  color: rgba(246, 241, 234, 0.74);
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer small {
  color: rgba(246, 241, 234, 0.52);
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--text-inverse);
  box-shadow: var(--shadow-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.is-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

@media (max-width: 1080px) {
  .hero-content,
  .page-hero-shell,
  .project-detail-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .project-grid,
  .services-grid,
  .materials-grid,
  .process-grid,
  .portfolio-collection,
  .testimonial-grid,
  .grid-4,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-feature-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card-large {
    grid-row: auto;
    min-height: 520px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-shell {
    min-height: 76px;
  }

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

  .nav-panel {
    position: fixed;
    inset: 76px 16px auto;
    padding: 20px;
    border-radius: 28px;
    background: rgba(247, 243, 238, 0.96);
    border: 1px solid rgba(24, 21, 18, 0.08);
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-content,
  .page-hero-shell,
  .compact-hero-shell,
  .intro-grid,
  .grid-2,
  .contact-grid,
  .detail-split,
  .form-grid,
  .project-detail-grid,
  .timeline-item,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .services-grid,
  .materials-grid,
  .process-grid,
  .testimonial-grid,
  .grid-3,
  .portfolio-collection,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 84px;
  }

  .search-input-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-aside,
  .card,
  .process-card,
  .contact-card,
  .quote-card,
  .material-panel,
  .detail-panel,
  .notice-panel,
  .form-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .project-card,
  .image-card,
  .hero-visual-card {
    min-height: 380px;
  }

  .project-gallery .image-card:first-child {
    min-height: 420px;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .language-bar-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .footer {
    padding-bottom: 110px;
  }
}

.brand-wordmark {
  height: 54px;
  width: auto;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(17, 16, 15, 0.08);
}

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

.image-mosaic .image-card {
  min-height: 320px;
}

@media (max-width: 900px) {
  .image-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .image-mosaic {
    grid-template-columns: 1fr;
  }
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.promise-grid .card,
.promise-grid .notice-panel {
  height: 100%;
}

.promise-grid .service-icon {
  margin-bottom: 18px;
}

.kompas-grid,
.trust-ladder {
  display: grid;
  gap: 22px;
}

.kompas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kompas-card,
.capture-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(24, 21, 18, 0.08);
  border-radius: var(--radius-l);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(239, 232, 222, 0.72)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.kompas-card h3,
.capture-card h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.kompas-card p,
.capture-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.notice-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.notice-dark p,
.notice-dark .detail-list li,
.notice-dark .detail-list li strong {
  color: var(--text-inverse);
}

.notice-dark .detail-list li {
  border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kompas-grid,
  .trust-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .kompas-grid,
  .trust-ladder {
    grid-template-columns: 1fr;
  }
}
