/* ============================================================
   CHELSEA HOUSE — styles.css
   Theme: Jet Black · Deep Gold · Aged Parchment · Smoke Grey
   Inspired by the heraldic gold-on-black logo
   Fonts: Cinzel (display caps) · Playfair Display (serif) · Lato (body)
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --black:      #0A0A08;
  --black-2:    #111110;
  --black-3:    #1A1A17;
  --dark:       #1E1E1A;
  --gold:       #C9A84C;
  --gold-lt:    #E2C97E;
  --gold-dk:    #9A7A30;
  --gold-glow:  rgba(201,168,76,0.18);
  --parchment:  #F0EAD6;
  --parchment-2:#C8BFAA;
  --fog:        #7A7670;
  --white:      #FFFFFF;
  --radius:     1px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --cinzel:    'Cinzel', 'Trajan Pro', serif;
  --playfair:  'Playfair Display', Georgia, serif;
  --lato:      'Lato', system-ui, sans-serif;
  --max-w: 1300px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--lato);
  font-weight: 300;
  background: var(--black);
  color: var(--parchment);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 99px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── SECTION HEAD ────────────────────────────────────────── */
.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section__head { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }
.section__eyebrow {
  display: block;
  font-family: var(--cinzel);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section__title {
  font-family: var(--playfair);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--parchment);
  line-height: 1.15;
}
.section__title em { font-style: italic; color: var(--gold-lt); }

/* ── GOLD RULE ───────────────────────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.gold-rule--left { justify-content: flex-start; }
.gold-rule span:first-child { display: block; height: 1px; width: 60px; background: linear-gradient(to right, var(--gold), transparent); }
.gold-rule span:last-child  { display: block; height: 1px; width: 60px; background: linear-gradient(to left, var(--gold), transparent); }
.gold-rule--left span:first-child { background: linear-gradient(to right, var(--gold), transparent); }
.gold-rule--left span:last-child  { background: linear-gradient(to right, transparent, var(--gold)); }
.rule-diamond { font-size: 0.5rem; color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cinzel);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover { box-shadow: 0 0 24px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.4); }
.btn--outline {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(201,168,76,0.5);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-lt); box-shadow: 0 0 16px var(--gold-glow); }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,8,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
  transition: filter 0.3s;
}
.nav__logo-img:hover { filter: drop-shadow(0 0 14px rgba(201,168,76,0.7)); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a {
  font-family: var(--cinzel);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment-2);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--gold-lt); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--cinzel) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius) !important;
  transition: all 0.3s var(--ease) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold) !important; color: var(--black) !important; box-shadow: 0 0 16px var(--gold-glow) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 101; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg-wrap { position: absolute; inset: 0; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1800&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroPan 22s ease-in-out infinite alternate;
  filter: brightness(0.3) saturate(0.5);
}
@keyframes heroPan {
  from { transform: scale(1.08) translate(0,0); }
  to   { transform: scale(1.08) translate(-1.5%,-1%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 65%),
              linear-gradient(to bottom, rgba(10,10,8,0.25) 0%, rgba(10,10,8,0.6) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(10,10,8,0.88) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--gutter);
  padding-block-start: 5rem;
  max-width: 820px;
}
.hero__logo-wrap { margin-bottom: 2rem; }
.hero__logo {
  height: auto;
  width: clamp(260px, 45vw, 480px);
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.5)) drop-shadow(0 0 80px rgba(201,168,76,0.2));
  display: block;
  margin-inline: auto;
}
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero__rule span:first-child { display: block; height: 1px; width: 80px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.6)); }
.hero__rule span:last-child  { display: block; height: 1px; width: 80px; background: linear-gradient(to left, transparent, rgba(201,168,76,0.6)); }
.hero__rule-diamond { font-size: 0.55rem; color: var(--gold); }
.hero__sub {
  font-family: var(--cinzel);
  font-size: clamp(0.6rem, 1.5vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment-2);
  line-height: 2;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(201,168,76,0.45);
}
.hero__scroll-text { font-family: var(--cinzel); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ── RIBBON ──────────────────────────────────────────────── */
.ribbon {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  padding-block: 0.9rem;
  white-space: nowrap;
}
.ribbon__inner {
  display: inline-flex;
  gap: 2.5rem;
  animation: ribbonScroll 32s linear infinite;
}
.ribbon__item {
  font-family: var(--cinzel);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
}
.ribbon__sep { font-size: 0.45rem; color: var(--gold-dk); }
@keyframes ribbonScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--black-2); border-bottom: 1px solid rgba(201,168,76,0.1); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.svc-card {
  background: var(--black-2);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-lt));
  transition: width 0.5s var(--ease);
}
.svc-card:hover { background: var(--black-3); }
.svc-card:hover::before { width: 100%; }
.svc-card__icon { width: 2.75rem; height: 2.75rem; color: var(--gold); margin-bottom: 1.5rem; flex-shrink: 0; }
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card__title { font-family: var(--playfair); font-weight: 400; font-size: 1.4rem; color: var(--parchment); margin-bottom: 1rem; }
.svc-card__rule { width: 32px; height: 1px; background: var(--gold-dk); margin-bottom: 1rem; transition: width 0.4s var(--ease), background 0.4s; }
.svc-card:hover .svc-card__rule { width: 56px; background: var(--gold); }
.svc-card__text { font-size: 0.87rem; color: var(--parchment-2); line-height: 1.8; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--black); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.gallery__item { position: relative; overflow: hidden; background: var(--black-3); cursor: zoom-in; }
.gallery__item img { transition: transform 0.8s var(--ease), filter 0.5s; filter: brightness(0.88) saturate(0.9); }
.gallery__item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__caption {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(10,10,8,0.88));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }
.gallery__caption span { font-family: var(--playfair); font-weight: 400; font-style: italic; font-size: 0.95rem; color: var(--gold-lt); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); }
.about__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about__img-frame { position: relative; aspect-ratio: 4/5; }
.about__img-frame img { height: 100%; filter: brightness(0.85) saturate(0.8); transition: filter 0.5s; }
.about__img-frame:hover img { filter: brightness(0.95) saturate(0.95); }
.about__img-border {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  z-index: -1;
  transition: border-color 0.4s;
}
.about__img-frame:hover .about__img-border { border-color: rgba(201,168,76,0.6); }
.about__copy { padding-block: 1rem; }
.about__copy p { font-size: 0.92rem; color: var(--parchment-2); line-height: 1.85; margin-block: 1.2rem; }
.about__copy .gold-rule { margin-bottom: 1.75rem; }
.about__pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-block: 2rem; }
.about__pillars li { display: flex; gap: 1rem; align-items: flex-start; }
.pillar__icon { color: var(--gold); font-size: 0.5rem; margin-top: 0.45rem; flex-shrink: 0; }
.about__pillars strong {
  display: block;
  font-family: var(--cinzel);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--parchment);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.about__pillars p { font-size: 0.82rem; color: var(--fog); margin: 0; line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--black); }
.testi__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi:hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 0 30px rgba(201,168,76,0.07); }
.testi::before {
  content: '\201C';
  font-family: var(--playfair);
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(201,168,76,0.07);
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  pointer-events: none;
}
.testi__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.testi__quote { font-family: var(--playfair); font-style: italic; font-size: 1rem; color: var(--parchment-2); line-height: 1.75; margin-bottom: 1.75rem; }
.testi__author strong {
  display: block;
  font-family: var(--cinzel);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.testi__author span { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--fog); text-transform: uppercase; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.1); }
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.contact__info p { font-size: 0.9rem; color: var(--parchment-2); line-height: 1.85; margin-block: 1.5rem; }
.contact__info .gold-rule { margin-bottom: 1.75rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--parchment-2);
  transition: color 0.3s;
}
.contact__detail:hover { color: var(--gold-lt); }
.contact__detail svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; color: var(--gold); }
.contact__logo-seal { width: 140px; margin-top: 1rem; filter: drop-shadow(0 0 12px rgba(201,168,76,0.25)); opacity: 0.8; }

/* ── FORM ────────────────────────────────────────────────── */
.contact__form-wrap {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: clamp(2rem, 4vw, 3rem);
}
.form__header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
.form__header h3 { font-family: var(--playfair); font-weight: 400; font-size: 1.35rem; color: var(--parchment); margin-bottom: 0.4rem; }
.form__header p { font-size: 0.78rem; color: var(--fog); letter-spacing: 0.05em; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form__group label {
  font-family: var(--cinzel);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__group label em { font-style: normal; color: var(--fog); font-family: var(--lato); letter-spacing: 0; text-transform: none; font-size: 0.7rem; }
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--lato);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--parchment);
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--fog); }
.form__group select option { background: var(--black-2); color: var(--parchment); }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form__group input.error, .form__group select.error, .form__group textarea.error { border-color: #C0392B; }
.form__error { font-size: 0.7rem; color: #E74C3C; min-height: 1em; }

.btn__spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(10,10,8,0.3); border-top-color: var(--black); border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn.loading .btn__text { opacity: 0; position: absolute; }
.btn.loading .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__success { display: none; align-items: center; gap: 1rem; padding: 1.25rem; border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); margin-top: 1rem; }
.form__success.visible { display: flex; }
.success__icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.form__success p { font-family: var(--playfair); font-style: italic; font-size: 1rem; color: var(--parchment-2); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.15); }
.footer__top { text-align: center; padding-block: 3.5rem 2rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
.footer__logo { height: auto; width: 200px; object-fit: contain; margin-inline: auto; display: block; filter: drop-shadow(0 0 20px rgba(201,168,76,0.3)); margin-bottom: 1.5rem; }
.footer__rule { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer__rule span:first-child { display: block; width: 80px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.4)); }
.footer__rule span:last-child  { display: block; width: 80px; height: 1px; background: linear-gradient(to left, transparent, rgba(201,168,76,0.4)); }
.footer__rule span:nth-child(2) { font-size: 0.45rem; color: var(--gold-dk); }
.footer__tagline { font-family: var(--cinzel); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dk); }
.footer__mid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-block: 3rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col h4 { font-family: var(--cinzel); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.footer__col a, .footer__col span { font-size: 0.82rem; color: var(--fog); transition: color 0.3s; }
.footer__col a:hover { color: var(--gold-lt); }
.footer__base { border-top: 1px solid rgba(201,168,76,0.08); padding-block: 1.5rem; text-align: center; }
.footer__base p { font-family: var(--cinzel); font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(201,168,76,0.25); text-transform: uppercase; }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__container { grid-template-columns: 1fr; }
  .about__img-frame { aspect-ratio: 16/9; max-height: 360px; }
  .about__img-border { display: none; }
  .contact__container { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,8,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 99;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 0.85rem; letter-spacing: 0.25em; color: var(--parchment-2); }
  .nav__cta { padding: 0.7rem 2rem !important; font-size: 0.72rem !important; }
  .nav__burger { display: flex; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall, .gallery__item--wide { grid-row: span 1; grid-column: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__logo-seal { display: none; }
}

@media (max-width: 500px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .hero__logo { width: clamp(220px, 85vw, 320px); }
}
