:root {
  --ink: #0d0c0b;
  --ink-soft: #1a1815;
  --paper: #f4f0e9;
  --paper-2: #efeae1;
  --accent: #c4553a;
  --accent-deep: #a8432d;
  --accent-light: #e8c4b8;
  --steel: #4a4d52;
  --steel-soft: #6b6e73;
  --mist: #e4ded4;
  --line: #ddd6c9;
  --white: #ffffff;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt';
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

/* film grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(244, 240, 233, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  transition:
    height 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
nav.scrolled {
  height: 66px;
  background: rgba(244, 240, 233, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo-mark {
  font-family: var(--serif);
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav-logo:hover .nav-logo-mark {
  color: var(--accent);
}
.nav-logo-sub {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--steel-soft);
  font-weight: 500;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
  padding: 0.2rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: all 0.35s var(--ease);
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}
.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 85%, rgba(196, 85, 58, 0.09), transparent 70%),
    radial-gradient(ellipse 55% 45% at 85% 12%, rgba(74, 77, 82, 0.07), transparent 70%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.05;
}
.hero-grid-lines::before {
  content: '';
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(var(--steel) 1px, transparent 1px),
    linear-gradient(90deg, var(--steel) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-3deg) translate3d(0, var(--grid-parallax, 0px), 0);
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  border: 1px solid var(--accent-light);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 2.4rem;
  background: rgba(196, 85, 58, 0.04);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(196, 85, 58, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 85, 58, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(196, 85, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 85, 58, 0);
  }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  max-width: 576px;
  margin: 0 auto 2.6rem;
  font-size: 1.02rem;
  color: var(--steel);
  line-height: 1.8;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2.1rem;
  border-radius: 100px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  cursor: pointer;
}
.btn .arrow {
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(196, 85, 58, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--steel-soft);
  z-index: 2;
}
.scroll-cue span {
  width: 1px;
  height: 42px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: drop 2s var(--ease) infinite;
}
@keyframes drop {
  0% {
    top: -50%;
  }
  60%,
  100% {
    top: 100%;
  }
}

/* ── SECTIONS ── */
section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 4rem);
}
section[id] {
  scroll-margin-top: 80px;
}

.section-head {
  max-width: 720px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  max-width: 720px;
}
.section-text {
  max-width: 600px;
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.85;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem;
  position: relative;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.4rem 2.2rem;
  min-height: 250px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-face {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 1;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 85, 58, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s var(--ease);
  flex-shrink: 0;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s var(--ease);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}
.service-more {
  margin-top: auto;
  padding-top: 1.3rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-soft);
  font-weight: 600;
}

/* expanded detail (hidden until hover) */
.service-detail {
  display: none;
}
.service-detail-main h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 0.8rem;
}
.service-detail-main p {
  font-size: 0.95rem;
}
.service-points {
  list-style: none;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.service-points li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.5;
}
.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-decoration: none;
}
.service-link .arrow {
  transition: transform 0.35s var(--ease);
}
.service-link:hover .arrow {
  transform: translateX(4px);
}

.service-example {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  padding: 2.2rem 1.4rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-example-tag {
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel-soft);
  font-weight: 600;
}
.ex-canvas {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.ex-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.ex-table th,
.ex-table td {
  text-align: left;
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
}
.ex-table th {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-soft);
  font-weight: 600;
}
.ex-table td:last-child,
.ex-table th:last-child {
  text-align: right;
  white-space: nowrap;
}
.ex-table tfoot td {
  border-bottom: none;
  border-top: 1px solid var(--steel-soft);
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.6rem;
}
.ex-render {
  width: 100%;
  min-height: 190px;
  border-radius: 8px;
  background: linear-gradient(140deg, #c7ccd1, #eef1f0 55%, #ddc5b9);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--steel);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ── HOVER-EXPAND (pointer devices only) ── */
@media (hover: hover) {
  .service-card:hover {
    position: absolute;
    inset: 0;
    z-index: 10;
    min-height: 0;
    padding: clamp(1.8rem, 3.4vw, 2.8rem);
    border-color: var(--mist);
    box-shadow: 0 18px 48px rgba(13, 12, 11, 0.1);
    overflow: auto;
    animation: serviceExpand 0.5s var(--ease-out);
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }
  .service-card:hover .service-face {
    display: none;
  }
  .service-card:hover .service-icon {
    background: var(--accent);
  }
  .service-card:hover .service-icon svg {
    stroke: var(--white);
  }
  .service-card:hover .service-detail {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    height: 100%;
    align-items: stretch;
    animation: serviceDetailIn 0.45s 0.06s var(--ease-out) both;
  }
  .service-detail-main {
    display: flex;
    flex-direction: column;
  }
}
@media (hover: hover) and (max-width: 760px) {
  .service-card:hover .service-detail {
    grid-template-columns: 1fr;
  }
  .service-example {
    min-height: 150px;
  }
}
@keyframes serviceExpand {
  from {
    opacity: 0.65;
  }
  to {
    opacity: 1;
  }
}
@keyframes serviceDetailIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── WAYS TO WORK ── */
.alt-bg {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.way-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.way-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.way-card:hover {
  transform: translateY(-4px);
  border-color: var(--mist);
  box-shadow: 0 18px 48px rgba(13, 12, 11, 0.1);
}
.way-card:hover::before {
  transform: scaleX(1);
}
.way-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.way-head .service-icon {
  margin-bottom: 0;
}
.way-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--steel-soft);
  font-weight: 600;
}
.way-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.way-card > p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.75;
}
.way-card .service-points {
  margin-top: 1.4rem;
}
.way-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem !important;
  color: var(--steel-soft) !important;
  line-height: 1.6;
}
.way-card .service-link {
  padding-top: 1.4rem;
}

/* ── PROCESS ── */
.process-bg {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.process-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(ellipse 50% 40% at 80% 0%, rgba(196, 85, 58, 0.14), transparent 70%);
  pointer-events: none;
}
.process-bg .section-label {
  color: var(--accent-light);
}
.process-bg .section-title {
  color: var(--paper);
}
.process-bg .section-text {
  color: rgba(244, 240, 233, 0.62);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.4rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.step {
  position: relative;
  padding-top: 2rem;
}
.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(196, 85, 58, 0.12));
}
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--paper);
}
.step p {
  font-size: 0.86rem;
  color: rgba(244, 240, 233, 0.55);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-layout {
  max-width: 760px;
  margin-top: 3rem;
}
.about-cred {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.4rem;
}
.cred-item {
  border-left: 2px solid var(--accent);
  padding-left: 1.1rem;
}
.cred-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.cred-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--steel);
  margin-top: 0.35rem;
}

/* ── ENQUIRY ── */
.enquiry-bg {
  background: var(--paper-2);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 3rem auto 0;
}

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 30px 60px rgba(13, 12, 11, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 0.92rem;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  outline: none;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%234a4d52' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 85, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel-soft);
  opacity: 0.7;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-submit:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(196, 85, 58, 0.28);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}
.form-error {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--accent-deep);
}
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--steel-soft);
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(244, 240, 233, 0.6);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 240, 233, 0.12);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.footer-tag {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  max-width: 320px;
  color: rgba(244, 240, 233, 0.5);
}
.footer-col h5 {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 240, 233, 0.4);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col a,
.footer-col span {
  display: block;
  text-decoration: none;
  color: rgba(244, 240, 233, 0.62);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--accent-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
}
.footer-bottom small {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 233, 0.4);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.stagger.in > * {
  opacity: 1;
  transform: none;
}
.stagger.in > *:nth-child(1) {
  transition-delay: 0.04s;
}
.stagger.in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger.in > *:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger.in > *:nth-child(4) {
  transition-delay: 0.28s;
}
.stagger.in > *:nth-child(5) {
  transition-delay: 0.36s;
}
.stagger.in > *:nth-child(6) {
  transition-delay: 0.44s;
}

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  max-width: 420px;
  z-index: 300;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(13, 12, 11, 0.18);
  padding: 1.5rem 1.6rem;
  transform: translateY(calc(100% + 2.5rem));
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.6s var(--ease),
    opacity 0.5s var(--ease),
    visibility 0.6s;
}
.cookie-banner.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.cookie-text {
  font-size: 0.84rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.62rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.cookie-decline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--steel);
}
.cookie-decline:hover {
  border-color: var(--steel);
  color: var(--ink);
}
.cookie-accept {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--white);
}
.cookie-accept:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .nav-right {
    gap: 1.2rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--paper);
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(13, 12, 11, 0.1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1rem;
  }
  .hamburger {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
