/* ===== Paige One Production: Design Tokens ===== */
:root {
  --charcoal: #1a1816;
  --charcoal-deep: #12100e;
  --charcoal-soft: #2a2622;
  --ink: #1f1c19;
  --body: #3d3832;
  --muted: #6e675e;
  --ivory: #f7f3eb;
  --ivory-deep: #efe8dc;
  --cream: #fbf8f2;
  --warm: #f0e8d8;
  --line: rgba(26, 24, 22, 0.1);
  --line-on-dark: rgba(247, 243, 235, 0.14);
  --teal: #1ea8b0;
  --teal-bright: #2ec4c6;
  --gold: #c9a65a;
  --gold-soft: #e8d5a3;
  --gold-deep: #a8873f;
  --maxw: 1120px;
  --radius: 4px;
  --radius-lg: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --gradient-brand: linear-gradient(165deg, #2ec4c6 0%, #5bb8b0 42%, #d4c08a 78%, #e8d5a3 100%);
  --shadow-soft: 0 24px 60px -28px rgba(26, 24, 22, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, .brand__text strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* Subtle film grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%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");
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn--gold {
  background: var(--gold);
  color: var(--charcoal-deep);
  box-shadow: 0 10px 28px -12px rgba(201, 166, 90, 0.65);
}
.btn--gold:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 243, 235, 0.35);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.btn--charcoal {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--charcoal:hover {
  transform: translateY(-2px);
  background: var(--charcoal-soft);
}
.btn--full { width: 100%; }

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 14, 0.92);
  backdrop-filter: blur(14px);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-on-dark);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  flex-shrink: 0;
}
.brand__logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(46, 196, 198, 0.25));
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__text strong {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.brand__text em {
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  margin-top: 5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.78);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:hover {
  color: var(--ivory);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal-deep);
  font-weight: 600;
  font-size: 0.84rem;
  transition: transform 0.22s var(--ease), background 0.22s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--charcoal-deep);
}
.hero__plane {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(30, 168, 176, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(201, 166, 90, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(46, 196, 198, 0.12), transparent 55%),
    linear-gradient(180deg, #12100e 0%, #1a1816 55%, #221e1a 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.hero__orb--teal {
  width: 420px;
  height: 420px;
  top: -8%;
  left: 8%;
  background: rgba(46, 196, 198, 0.35);
}
.hero__orb--gold {
  width: 380px;
  height: 380px;
  bottom: -12%;
  right: 5%;
  background: rgba(201, 166, 90, 0.28);
  animation-delay: -4s;
}
.hero__rings {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(232, 213, 163, 0.06);
  border-radius: 50%;
  mask-image: radial-gradient(ellipse at center, transparent 42%, #000 70%);
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -18px) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 96px 28px 88px;
  max-width: 720px;
}
.hero__logo {
  width: min(340px, 78vw);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 28px rgba(46, 196, 198, 0.35)) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
  animation: logoGlow 5s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(46, 196, 198, 0.28)) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)); }
  to { filter: drop-shadow(0 0 36px rgba(201, 166, 90, 0.4)) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)); }
}
.hero__title {
  color: var(--ivory);
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__support {
  color: rgba(247, 243, 235, 0.72);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--ivory { background: var(--ivory); }
.section--warm { background: var(--warm); }
.section--cream { background: var(--cream); }
.section--charcoal {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(30, 168, 176, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(201, 166, 90, 0.1), transparent 50%),
    var(--charcoal);
  color: rgba(247, 243, 235, 0.78);
}
.section--about {
  background:
    linear-gradient(135deg, var(--ivory-deep), var(--cream) 55%, #f3ead8);
  position: relative;
  overflow: hidden;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--on-dark { color: var(--gold-soft); }

.block__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.block__head--left {
  text-align: left;
  margin-left: 0;
  max-width: 620px;
}
.block__title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 600;
}
.block__title--light { color: var(--ivory); }
.block__sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.service {
  background: var(--cream);
  padding: 32px 28px 36px;
  transition: background 0.3s ease;
}
.service:hover { background: #fff; }
.service__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.service h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service p {
  color: var(--muted);
  font-size: 0.95rem;
}
.service--path {
  background: linear-gradient(160deg, #fff 0%, #f3f0e6 100%);
  position: relative;
}
.service--path::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gradient-brand);
}
.service__link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: color 0.2s, transform 0.2s;
}
.service__link:hover {
  color: var(--gold-deep);
  transform: translateX(3px);
}

.backline-path {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: rgba(247, 243, 235, 0.78);
  box-shadow: var(--shadow-soft);
}
.backline-path .eyebrow { color: var(--gold-soft); }
.backline-path h3 {
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-bottom: 12px;
}
.backline-path__copy p:last-child {
  max-width: 420px;
}
.backline-path__steps {
  display: grid;
  gap: 16px;
}
.backline-path__steps li {
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid var(--line-on-dark);
}
.backline-path__steps strong {
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.backline-path__steps span {
  color: rgba(247, 243, 235, 0.55);
  font-size: 0.88rem;
}

/* ===== Direction ===== */
.direction {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.direction__lead {
  font-size: 1.08rem;
  margin: 18px 0 26px;
  max-width: 520px;
  color: rgba(247, 243, 235, 0.72);
}
.direction__list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.direction__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 243, 235, 0.82);
  font-size: 0.98rem;
}
.direction__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.direction__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.direction__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.direction__visual:hover img { transform: scale(1.04); }
.direction__visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 20px;
  background: linear-gradient(transparent, rgba(18, 16, 14, 0.88));
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ===== Craft / Studio ===== */
.craft__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.craft__panel {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.craft__panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.craft__panel--wide {
  background:
    linear-gradient(145deg, rgba(30, 168, 176, 0.08), transparent 50%),
    linear-gradient(200deg, #fff, var(--ivory-deep));
  border-color: rgba(30, 168, 176, 0.18);
}
.craft__panel h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.craft__panel p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ===== Instagram portfolio ===== */
.ig-handle {
  color: var(--teal);
  font-weight: 600;
}
.ig-handle:hover { text-decoration: underline; }

.grid { display: grid; gap: 16px; }
.grid--ig {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ig {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--charcoal-soft);
  box-shadow: 0 16px 40px -24px rgba(26, 24, 22, 0.5);
}
.ig img,
.ig__media,
.ig__embed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.ig__embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--charcoal-soft);
}
.ig__embed .instagram-media {
  margin: 0 !important;
  min-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.ig__embed iframe {
  position: absolute;
  top: -54px;
  left: 50%;
  width: 118%;
  height: 140%;
  transform: translateX(-50%);
  border: 0;
}
.ig__media {
  background-size: cover;
  background-position: center;
}
.ig__media--tone1 {
  background-image:
    linear-gradient(160deg, rgba(30, 168, 176, 0.55), rgba(18, 16, 14, 0.4)),
    radial-gradient(circle at 30% 40%, #2ec4c6, #1a1816 70%);
}
.ig__media--tone2 {
  background-image:
    linear-gradient(145deg, rgba(201, 166, 90, 0.45), rgba(18, 16, 14, 0.5)),
    radial-gradient(circle at 70% 30%, #c9a65a, #1a1816 65%);
}
.ig__media--tone3 {
  background-image:
    linear-gradient(200deg, rgba(46, 196, 198, 0.35), rgba(201, 166, 90, 0.35)),
    radial-gradient(circle at 50% 60%, #3d3832, #12100e 70%);
}
.ig:hover img,
.ig:hover .ig__media { transform: scale(1.07); }

.ig__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.6);
  color: var(--ivory);
  font-size: 0.68rem;
  padding-left: 2px;
  backdrop-filter: blur(4px);
}
.ig__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(18, 16, 14, 0.52);
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig:hover .ig__overlay { opacity: 1; }
.ig__play { font-size: 0.7rem; }
.ig-cta { text-align: center; margin-top: 40px; }
.ig-loading,
.ig-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 28px 12px;
  font-size: 1rem;
}
.ig-meta {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.lightbox__fallback {
  text-align: center;
  color: rgba(247, 243, 235, 0.85);
  padding: 28px 18px;
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(247, 243, 235, 0.14);
  border-radius: 14px;
}
.lightbox__fallback p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.86);
  backdrop-filter: blur(8px);
}
.lightbox__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: auto;
}
.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease;
}
.lightbox__close:hover { transform: scale(1.08); }
.lightbox__body {
  min-height: 420px;
  display: grid;
  place-items: center;
}
.lightbox__body .instagram-media { margin: 0 auto !important; }
.lightbox__loading {
  color: rgba(247, 243, 235, 0.7);
  font-size: 0.95rem;
}

/* ===== Process ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}
.step {
  padding: 28px 24px 32px;
  border-top: 2px solid transparent;
  border-image: var(--gradient-brand) 1;
  background: transparent;
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.about__mark {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  box-shadow: 0 0 0 1px rgba(46, 196, 198, 0.25), 0 0 40px rgba(46, 196, 198, 0.15);
}
.about__mark img {
  width: 78px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(46, 196, 198, 0.35));
}
.about__copy p {
  margin-bottom: 16px;
  max-width: 560px;
}
.about__loc {
  margin-top: 8px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

/* ===== Contact ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__lead {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(247, 243, 235, 0.68);
  max-width: 420px;
}
.contact__list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.contact__list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-weight: 600;
  transition: color 0.2s;
}
.contact__list a:hover { color: var(--gold-soft); }
.contact__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(247, 243, 235, 0.08);
  border: 1px solid var(--line-on-dark);
  color: var(--gold-soft);
}

.form {
  background: rgba(247, 243, 235, 0.05);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(18, 16, 14, 0.45);
  border: 1px solid var(--line-on-dark);
  border-radius: 10px;
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(247, 243, 235, 0.35); }
.field select option { background: var(--charcoal); color: var(--ivory); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 168, 176, 0.2);
}
.field input.invalid,
.field textarea.invalid {
  border-color: #d4756a;
}
.form__note {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 20px;
}
.form__note.ok { color: #7dce9a; }
.form__note.err { color: #e8a090; }

/* ===== Footer ===== */
.footer {
  background: var(--charcoal-deep);
  color: rgba(247, 243, 235, 0.65);
  padding: 64px 0 0;
  border-top: 1px solid var(--line-on-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__brand { max-width: 320px; }
.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(46, 196, 198, 0.25));
}
.footer__brand p { font-size: 0.94rem; }
.footer__loc {
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer__col h3 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col a {
  color: rgba(247, 243, 235, 0.55);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__bar {
  border-top: 1px solid var(--line-on-dark);
  padding: 22px 0;
}
.footer__bar p {
  text-align: center;
  color: rgba(247, 243, 235, 0.4);
  font-size: 0.82rem;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .craft__grid { grid-template-columns: 1fr 1fr; }
  .craft__panel--wide { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .direction { grid-template-columns: 1fr; gap: 36px; }
  .direction__visual { max-width: 420px; }
  .backline-path { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal-deep);
    border-top: 1px solid var(--line-on-dark);
    padding: 8px 28px 22px;
    transform: translateY(-130%);
    transition: transform 0.32s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__links a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line-on-dark);
  }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .services,
  .grid--ig,
  .steps,
  .craft__grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .about { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about__mark { margin: 0 auto; }
  .about__copy p { margin-left: auto; margin-right: auto; }
  .block__head--left { text-align: center; margin-left: auto; margin-right: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { min-height: min(88vh, 720px); }
  .hero__content { padding: 72px 24px 64px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .backline-path { padding: 24px; }
}

@media (max-width: 480px) {
  .services,
  .grid--ig,
  .steps,
  .craft__grid { grid-template-columns: 1fr; }
  .brand__text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__logo { animation: none; filter: drop-shadow(0 0 24px rgba(46, 196, 198, 0.3)); }
}
