/* =========================================================
   Studio Ligjore Gentjana Ndoj
   ========================================================= */

:root {
  --bg: #EEECE8;
  --bg-soft: #F5F4F1;
  --ink: #1C1B19;
  --ink-2: #3B3935;
  --muted: #66615A;
  --line: rgba(28, 27, 25, 0.1);
  --pill: #E2DFD9;
  --pill-hover: #D8D4CC;
  --bronze: #6E5234;
  --bronze-2: #8B6A45;
  --bronze-3: #B8966B;
  --bronze-soft: #D2BC9C;
  --cream: #F7F3EC;
  --bronze-grad: linear-gradient(180deg, #8C6C49 0%, #664C31 100%);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius-lg: 32px;
  --radius-md: 28px;

  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --statue-w: clamp(330px, 42vw, 620px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--bronze-2);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ---------- Shared pieces ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(28, 27, 25, 0.05);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pill:hover { background: var(--pill-hover); color: var(--ink); }
.pill.is-active { background: var(--ink); color: var(--cream); border-color: transparent; }
.pill--icon .icon { width: 15px; height: 15px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 7px 0 20px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.btn-icon .icon { width: 15px; height: 15px; stroke-width: 2; transition: transform 0.35s var(--ease); }
.btn:hover .btn-icon .icon { transform: rotate(45deg); }

.btn-bronze {
  color: #FBF8F3;
  background: var(--bronze-grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 24px -10px rgba(90, 64, 38, 0.6);
}
.btn-bronze:hover { filter: brightness(1.08); }

.btn-light {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.6);
}
.btn-light .btn-icon { background: var(--bronze-grad); color: #FBF8F3; }
.btn-light:disabled { opacity: 0.6; cursor: progress; }

.btn-lg { height: 52px; padding-left: 26px; font-size: 15px; }
.btn-lg .btn-icon { width: 38px; height: 38px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink-2);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-2);
}
.eyebrow--glass {
  background: rgba(255, 255, 255, 0.14);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.eyebrow--glass::before { background: var(--bronze-soft); }
.eyebrow--dark {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 243, 236, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}
.eyebrow--dark::before { background: var(--bronze-3); }

.pill-word {
  display: inline-block;
  padding: 0.04em 0.34em 0.08em 0.28em;
  margin: 0 0.02em;
  border-radius: 999px;
  background: var(--pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 0 0 1px rgba(28, 27, 25, 0.05);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}
.pill-word--dark {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.section { padding: clamp(80px, 10vw, 140px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.section-title {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-sub { max-width: 520px; color: var(--muted); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(238, 236, 232, 0.78);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bronze-grad);
  color: #FBF8F3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 14px -8px rgba(90, 64, 38, 0.7);
}
.brand-mark .icon { width: 19px; height: 19px; stroke-width: 1.8; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-text small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links { display: flex; gap: 8px; }
.nav-end { display: flex; align-items: center; gap: 10px; justify-self: end; }

.menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--pill);
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.menu-btn span:first-child { top: 17px; }
.menu-btn span:last-child { top: 24px; }
.menu-btn[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  gap: 14px;
  padding: 10px 18px 18px;
  border-radius: 24px;
  background: var(--bg-soft);
  box-shadow: 0 30px 60px -30px rgba(28, 27, 25, 0.45), inset 0 0 0 1px var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
}
.mobile-menu ul { display: grid; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.mobile-menu ul a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.4;
}
.mobile-menu ul a:hover { color: var(--bronze); }
.mobile-menu .btn { justify-content: space-between; }
.mobile-menu-meta { font-size: 13.5px; line-height: 1.7; color: var(--muted); padding-inline: 4px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(112px, 10vw, 146px);
  overflow: hidden;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1200px;
  background: radial-gradient(55% 45% at 50% 32%, #F7F6F3 0%, rgba(247, 246, 243, 0) 72%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; text-align: center; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.7vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
/* Rest of the H1 sentence: kept in the heading for SEO, set smaller. */
.hero-title .line--sub {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink-2);
}

.hero-sub {
  max-width: 480px;
  margin: 20px auto 28px;
  font-size: 15.5px;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  height: calc(var(--statue-w) * 1.14);
  /* The photo has empty sky above the statue; overlap it so the statue sits right under the button. */
  margin-top: calc(var(--statue-w) * -0.07);
}

.watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--statue-w) * 0.8);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.4rem, 19vw, 19rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(180deg, rgba(28, 27, 25, 0.1) 0%, rgba(28, 27, 25, 0.025) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(calc(-50% + var(--wy, 0px)));
  pointer-events: none;
  user-select: none;
}

/* The photo sits on a pale background; "darken" lets the page colour
   replace it so the statue reads as a cut-out, like in the reference. */
.statue-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: var(--statue-w);
  margin-inline: auto;
  mix-blend-mode: darken;
  translate: 0 var(--py, 0px);
  pointer-events: none;
}
.statue {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.06) saturate(0.95);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 7%, #000 56%, transparent 88%),
    linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 7%, #000 56%, transparent 88%),
    linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-composite: intersect;
}

.stage-side {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.stage-side > * { pointer-events: auto; }

/* Two laurel badges flank the statue, each with its caption underneath. */
.seal {
  position: absolute;
  top: 30%;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 200px;
  margin: 0;
  text-align: center;
}
.seal--left { left: var(--gutter); }
.seal--right { right: var(--gutter); }
.seal-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
}
.seal-laurel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #928B81;
}
.seal-badge b {
  position: relative;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.seal figcaption {
  max-width: 190px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- About ---------- */

.about {
  position: relative;
  z-index: 3;
  padding-top: clamp(24px, 3.5vw, 56px);
  padding-bottom: clamp(24px, 4vw, 56px);
}

.reveal-text {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3.2vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-align: center;
  color: var(--ink);
}
.js .reveal-text .w { color: #BFBAB2; transition: color 0.4s var(--ease); }
.js .reveal-text .w.on { color: var(--ink); }

.about-visual { margin-top: clamp(80px, 10vw, 140px); }

/* Two steps left of the emblem, one to the right, like the reference layout. */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px)) 1fr minmax(0, 240px);
  column-gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin: 0 0 32px;
  padding: 0 8px;
  list-style: none;
}
.step--end { grid-column: 4; }
.step {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(28, 27, 25, 0.16);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bronze-2);
}
.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.step-text { font-size: 13.5px; line-height: 1.45; color: var(--muted); }

.card-wrap { position: relative; --s: 1; }

.notch-card {
  position: relative;
  height: clamp(460px, 46vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #2B2119;
}
.notch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translateY(var(--iy, 0px));
}
.notch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 13, 9, 0.2) 0%, rgba(18, 13, 9, 0.15) 35%, rgba(18, 13, 9, 0.86) 100%);
}

/* Covers the top-centre of the card in the page colour so the
   emblem appears to sit in a rounded notch. */
.notch {
  position: absolute;
  top: -2px;
  left: 50%;
  z-index: 3;
  width: 148px;
  height: 62px;
  fill: var(--bg);
  transform: translateX(-50%) scale(var(--s));
  transform-origin: 50% 2px;
}

.emblem {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: calc(96px * var(--s));
  height: calc(96px * var(--s));
  transform: translate(-50%, -50%);
}
.emblem-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle closest-side, #F6F4F0 0 79%, transparent 80%);
  box-shadow: 0 14px 30px -14px rgba(74, 53, 31, 0.55);
  color: var(--bronze);
}
.emblem-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #6E5234, #C4A57C, #7A5B3B, #D2B891, #6E5234);
  -webkit-mask: radial-gradient(circle closest-side, transparent 79%, #000 80%);
  mask: radial-gradient(circle closest-side, transparent 79%, #000 80%);
  animation: spin 14s linear infinite;
}
.emblem-ring .icon { position: relative; width: 30%; height: 30%; stroke-width: 1.5; }

.card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--cream);
}
.card-statement {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.022em;
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 100% 0%, #3A2E22 0%, #171411 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  color: var(--cream);
  box-shadow: 0 30px 60px -32px rgba(40, 30, 20, 0.55);
}
.service-card:hover::before { opacity: 1; }

.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.5s var(--ease);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pill);
  color: var(--bronze);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.6s var(--ease-out);
}
.service-icon .icon { width: 23px; height: 23px; stroke-width: 1.6; }
.service-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.service-kicker {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-2);
  transition: color 0.5s var(--ease);
}
.service-lead {
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.5s var(--ease);
}
.service-list { display: grid; gap: 7px; margin-bottom: 22px; }
.service-list li {
  position: relative;
  padding-left: 17px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  transition: color 0.5s var(--ease);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-3);
}
/* Closing line sits at the bottom so cards in a row line up. */
.service-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-foot strong { font-weight: 600; }
.service-card:hover .service-num,
.service-card:hover .service-kicker { color: var(--bronze-soft); }
.service-card:hover .service-icon { background: var(--bronze-grad); color: #FBF8F3; transform: rotate(-10deg) scale(1.05); }
.service-card:hover .service-lead,
.service-card:hover .service-foot { color: var(--cream); }
.service-card:hover .service-list li { color: rgba(247, 243, 236, 0.72); }
.service-card:hover .service-foot { border-top-color: rgba(255, 255, 255, 0.12); }

.services-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  margin-top: 16px;
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: var(--radius-md);
  background: var(--pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.services-more h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.services-more p { max-width: 640px; font-size: 15px; color: var(--muted); }

/* ---------- Testimonials ---------- */

.testimonials { padding-top: 0; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.quote-mark { width: 34px; height: 34px; fill: var(--bronze-3); }
.quote-card blockquote {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: -0.012em;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote-card figcaption strong { display: block; font-size: 15px; font-weight: 600; }
.quote-card figcaption small { font-size: 13px; color: var(--muted); }
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bronze-grad);
  color: #FBF8F3;
  font-size: 14px;
  font-weight: 600;
  flex: none;
}

.quote-card--dark {
  background: radial-gradient(120% 90% at 100% 0%, #3A2E22 0%, #171411 62%);
  box-shadow: 0 30px 60px -34px rgba(40, 30, 20, 0.6);
  color: var(--cream);
}
.quote-card--dark .quote-mark { fill: var(--bronze-soft); }
.quote-card--dark figcaption { border-top-color: rgba(255, 255, 255, 0.1); }
.quote-card--dark figcaption small { color: rgba(247, 243, 236, 0.6); }

/* ---------- Contact ---------- */

.contact { padding-top: 0; padding-bottom: clamp(48px, 6vw, 80px); }

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(24px, 5vw, 64px);
  overflow: hidden;
  border-radius: 36px;
  background: radial-gradient(110% 90% at 0% 0%, #2D251D 0%, #161412 58%);
  color: var(--cream);
}

.contact-title {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.contact-sub { max-width: 420px; color: rgba(247, 243, 236, 0.68); }

.info-list { display: grid; gap: 12px; margin-top: 36px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184, 150, 107, 0.15);
  color: var(--bronze-soft);
  flex: none;
}
.info-icon .icon { width: 19px; height: 19px; }
.info-list small {
  display: block;
  margin-bottom: 2px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.5);
}
.info-list p,
.info-value { font-size: 15.5px; color: var(--cream); }
.info-value:hover { color: var(--bronze-soft); }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bronze-soft);
}
.map-link .icon { width: 14px; height: 14px; stroke-width: 2; }
.map-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.socials { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.socials-label { margin-right: 6px; font-size: 13px; color: rgba(247, 243, 236, 0.55); }
.social {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.social:hover { background: var(--bronze-2); transform: translateY(-2px); }
.social .icon { width: 19px; height: 19px; }

.contact-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: rgba(247, 243, 236, 0.78); }
.field .opt { color: rgba(247, 243, 236, 0.45); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(247, 243, 236, 0.36); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze-3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(184, 150, 107, 0.2);
}
.field select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D2BC9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}
.field select option { color: var(--ink); background: var(--bg-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.form-status { flex: 1 1 220px; font-size: 14px; line-height: 1.45; }
.form-status.is-success { color: #B9D7A8; }
.form-status.is-error { color: #F0B4A4; }

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(40px, 5vw, 64px) 0 32px;
  overflow: hidden;
  overflow: clip;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; }

.footer-word {
  margin: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 32px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 10.6vw, 10.6rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(180deg, rgba(28, 27, 25, 0.16) 0%, rgba(28, 27, 25, 0.03) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}
.dev-info a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Motion ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-title .line { animation: rise 1s var(--ease-out) both; }
.hero-title .line:nth-child(2) { animation-delay: 0.08s; }
.hero-sub { animation: rise 1s var(--ease-out) 0.18s both; }
.hero-cta { animation: rise 1s var(--ease-out) 0.26s both; }
.statue-wrap { animation: rise 1.4s var(--ease-out) 0.3s both; }
.watermark { animation: fade 1.6s var(--ease) 0.5s both; }
.hero-title .line--sub { animation-delay: 0.14s; }
.seal { animation: fade 1.2s var(--ease) 0.8s both; }

.js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js [data-animate].in { opacity: 1; transform: none; }
/* Keep hover lift working once a card has animated in. */
.js .service-card[data-animate].in { transition: opacity 0.9s var(--ease-out), transform 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease); }

@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;
  }
  .js [data-animate] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .menu-btn { display: block; }

  .seal { width: 170px; }
  .seal-badge { width: 90px; height: 90px; }
  .seal-badge b { font-size: 20px; }
  .seal figcaption { font-size: 13px; }
}

@media (max-width: 1000px) {
  /* No room to split the steps around the emblem: show them in one row above it. */
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 84px; padding-inline: 0; }
  .step--end { grid-column: auto; }
}

@media (max-width: 900px) {
  .service-grid,
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .quote-card:last-child { grid-column: 1 / -1; }
  .contact-panel { grid-template-columns: 1fr; }

  /* Too narrow for badges beside the statue: put them side by side below it. */
  .hero-stage { height: auto; }
  .statue-wrap { position: relative; }
  .stage-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: calc(var(--statue-w) * -0.2);
  }
  .seal { position: static; width: 170px; }

  .about { padding-top: 64px; }
}

@media (max-width: 760px) {
  :root { --statue-w: min(88vw, 420px); }

  .nav-cta { display: none; }

  .watermark { top: calc(var(--statue-w) * 0.78); font-size: 23vw; }
  .seal { width: 150px; }
  .seal-badge { width: 84px; height: 84px; }
  .seal-badge b { font-size: 19px; }

  .brand-text strong { font-size: 14.5px; }
  .brand-text small { font-size: 9.5px; letter-spacing: 0.12em; }

  .steps { grid-template-columns: 1fr; row-gap: 22px; }

  .card-wrap { --s: 0.86; }
  .notch-card { height: auto; min-height: 520px; }
  .notch-card img { position: absolute; inset: 0; }
  .card-content { position: absolute; }

  .service-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card:last-child { grid-column: auto; }
  .services-more { flex-direction: column; align-items: flex-start; }

  .field-row { grid-template-columns: 1fr; }
  .form-foot .btn { width: 100%; justify-content: space-between; }

  .footer-top { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
