/* ============================================================
   BRYAN MEALER — Global Styles
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --ink:    #1a2433;
  --gold:   #c9922a;
  --gold-lt:#e5b24a;
  --cream:  #f5f0e8;
  --mist:   #eae5dc;
  --text:   #2c2c2c;
  --mid:    #6b7280;
  --white:  #ffffff;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-w: 1120px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--ff-serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1.2rem; }

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ---------- Layout ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section    { padding: 90px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }

/* ---------- Gold Divider ---------- */
.gold-rule {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}
.text-center .gold-rule { margin: 1rem auto 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .02em;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex; gap: 2.2rem; align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--white); font-family: var(--ff-serif);
  font-size: 2rem; transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }
  .nav { background: var(--navy); }
}

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,.95) 45%, rgba(201,146,42,.15) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
/* Two-column inner wrapper */
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px 5% 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.hero__content {
  flex: 1;
  max-width: 560px;
}
/* Hero portrait photo */
.hero__photo {
  flex-shrink: 0;
  width: 340px;
  position: relative;
}
.hero__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero__photo::after {
  content: '';
  position: absolute;
  top: 18px; left: -18px; right: 18px; bottom: -18px;
  border: 2px solid rgba(201,146,42,.4);
  border-radius: 3px;
  z-index: -1;
}
@media (max-width: 960px) {
  .hero__photo { display: none; }
  .hero__inner { padding: 110px 5% 90px; }
}
@media (max-width: 768px) {
  .hero__inner { padding: 100px 5% 80px; }
}
.hero__eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__title { color: var(--white); margin-bottom: 1.4rem; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: 1.15rem; color: rgba(255,255,255,.78);
  margin-bottom: 2.5rem; max-width: 540px; line-height: 1.75;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; padding: .82rem 2rem;
  font-size: .88rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; border-radius: 2px;
  cursor: pointer; transition: all var(--transition);
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--ink); transform: translateY(-2px); }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.6); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--gold);
  padding: 16px 0;
}
.intro-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem 2.5rem; flex-wrap: wrap;
}
.intro-strip p {
  margin: 0; color: var(--white);
  font-size: .92rem; font-weight: 600; letter-spacing: .04em;
}
.intro-strip span {
  color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .03em;
}
.intro-strip__divider {
  color: rgba(255,255,255,.35); font-size: 1rem; line-height: 1;
}
@media (max-width: 640px) {
  .intro-strip__inner { flex-direction: column; gap: .3rem; }
  .intro-strip__divider { display: none; }
}

/* ============================================================
   FEATURED BOOKS (Home)
   ============================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.book-card {
  background: var(--white);
  border: 1px solid #e5e0d8;
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.book-card__cover {
  aspect-ratio: 2/3; overflow: hidden;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
}
.book-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card__cover-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--ink) 0%, var(--navy) 100%);
  padding: 2rem; text-align: center;
}
.book-card__cover-placeholder .book-title {
  font-family: var(--ff-serif); color: var(--white); font-size: 1.1rem;
  line-height: 1.3; margin-bottom: .5rem;
}
.book-card__cover-placeholder .book-year {
  color: var(--gold); font-size: .8rem; font-weight: 700;
}
.book-card__body { padding: 1.4rem 1.5rem; }
.book-card__year {
  font-size: .75rem; font-weight: 700; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem;
}
.book-card__title { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.35; }
.book-card__sub   { font-size: .88rem; color: var(--mid); line-height: 1.5; }

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  padding: 80px 5%;
  background: var(--navy);
  text-align: center;
}
.quote-block blockquote {
  max-width: 780px; margin: 0 auto;
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: var(--white); line-height: 1.55;
  position: relative;
}
.quote-block blockquote::before {
  content: '\201C';
  font-size: 8rem; line-height: 0;
  color: var(--gold); opacity: .25;
  position: absolute; top: 1.2rem; left: -1rem;
  font-family: var(--ff-serif);
}
.quote-block cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-size: .88rem;
  color: rgba(255,255,255,.5); letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================================
   PRESS LOGOS
   ============================================================ */
.press { padding: 40px 0; border-top: 1px solid #ede8df; border-bottom: 1px solid #ede8df; }
.press__label {
  text-align: center; font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1.6rem;
}
.press__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 2rem;
  align-items: center;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto;
}
/* Image-based logos */
.press-logo {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.42;
  filter: grayscale(100%) brightness(0);
  transition: opacity .3s ease;
  cursor: default;
}
.press-logo:hover { opacity: 0.8; }
.press-logo img {
  height: 32px; width: auto;
  max-width: 150px; object-fit: contain;
  display: block;
}
/* SVG inline text logos */
.press-logo-svg {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.42;
  transition: opacity .3s ease;
}
.press-logo-svg:hover { opacity: 0.8; }
.press-logo-svg svg { display: block; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  min-height: 48vh;
  background: var(--navy);
  display: flex; align-items: flex-end;
  padding: 0 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 55%, rgba(201,146,42,.2) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__crumb {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.page-hero__title { color: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start;
}
.about-photo {
  position: sticky; top: 100px;
}
.about-photo__frame {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 3px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-photo__frame::after {
  content: '';
  position: absolute; top: 16px; left: -16px; right: 16px; bottom: -16px;
  border: 2px solid var(--gold); border-radius: 3px; z-index: -1;
}
.about-photo__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1e3045 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 4rem; color: rgba(201,146,42,.4);
}
.about-photo__caption {
  font-size: .8rem; color: var(--mid); margin-top: 1rem; text-align: center;
}
.about-text h2 { margin-bottom: .5rem; }
.about-text p { font-size: 1.05rem; color: #3d3d3d; }
.about-text .lead {
  font-size: 1.22rem; font-family: var(--ff-serif);
  color: var(--navy); margin-bottom: 1.8rem; line-height: 1.6;
}

.facts-list { margin: 2rem 0; }
.facts-list li {
  display: flex; gap: 1rem; padding: .9rem 0;
  border-bottom: 1px solid #ede8df; align-items: baseline;
}
.facts-list li:last-child { border-bottom: none; }
.facts-list .label {
  flex-shrink: 0; width: 120px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
.facts-list .value { font-size: .98rem; color: var(--text); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { position: static; max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   BOOKS PAGE
   ============================================================ */
.books-full {
  display: flex; flex-direction: column; gap: 6rem; margin-top: 3rem;
}
.book-feature {
  display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start;
}
.book-feature:nth-child(even) { direction: rtl; }
.book-feature:nth-child(even) > * { direction: ltr; }

.book-feature__cover {
  aspect-ratio: 2/3; border-radius: 3px; overflow: hidden;
  box-shadow: 8px 12px 40px rgba(0,0,0,.18);
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
}
.book-cover-block {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 2rem;
}
.book-cover-block .num {
  font-size: 5rem; font-family: var(--ff-serif);
  color: rgba(255,255,255,.08); line-height: 1; margin-bottom: .5rem;
}
.book-cover-block .ttl {
  font-family: var(--ff-serif); color: var(--white);
  font-size: 1.2rem; line-height: 1.3; margin-bottom: .6rem;
}
.book-cover-block .yr {
  color: var(--gold); font-size: .82rem; font-weight: 700;
}

.book-feature__info {}
.book-feature__meta {
  display: flex; gap: 1.5rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.book-feature__tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); background: rgba(201,146,42,.1);
  padding: .3rem .75rem; border-radius: 20px;
}
.book-feature__title { margin-bottom: .4rem; }
.book-feature__subtitle {
  font-size: 1rem; color: var(--mid); font-style: italic; margin-bottom: 1.4rem;
}
.book-feature__desc { font-size: 1.02rem; color: #3d3d3d; }
.book-feature__film {
  margin-top: 1.5rem; padding: 1rem 1.4rem;
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  font-size: .92rem;
}
.book-feature__film strong { color: var(--navy); }
.book-feature__links { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Real book cover images */
.book-feature__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Reviews section inside each book feature */
.book-reviews {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid #e5ddd0;
}
.book-reviews__header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem;
}
.book-reviews__stars {
  color: var(--gold); font-size: 1.05rem; letter-spacing: .05em;
}
.book-reviews__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid);
}
.book-reviews__quote {
  font-size: .95rem; color: var(--text); font-style: italic; line-height: 1.6;
  border-left: 3px solid var(--gold); padding-left: 1rem;
  margin: 0 0 .9rem;
}
.book-reviews__quote:last-of-type { margin-bottom: 0; }
.book-reviews__source {
  font-size: .78rem; font-weight: 700; font-style: normal;
  color: var(--mid); letter-spacing: .06em; display: block; margin-top: .3rem;
}
.book-reviews__amazon {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 1.1rem; transition: color var(--transition);
}
.book-reviews__amazon:hover { color: var(--gold-lt); }

/* Amazon Author Profile Banner */
.amazon-author-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: #fffbf3;
  border: 1.5px solid #f0a500;
  border-radius: 5px;
  padding: 1.6rem 2rem;
  margin-bottom: 3.5rem;
}
.amazon-author-banner__icon {
  width: 56px; height: 56px;
  background: rgba(255,153,0,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #e47911;
  flex-shrink: 0;
}
.amazon-author-banner__text { flex: 1; min-width: 200px; }
.amazon-author-banner__text h3 {
  font-size: 1rem; margin-bottom: .25rem; color: var(--navy);
}
.amazon-author-banner__text p {
  font-size: .88rem; color: var(--mid); margin: 0;
}
.amazon-author-banner__btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #ff9900; color: #111;
  padding: .72rem 1.5rem; border-radius: 3px;
  font-weight: 700; font-size: .86rem; letter-spacing: .03em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.amazon-author-banner__btn:hover { background: #ffb733; transform: translateY(-2px); }

@media (max-width: 820px) {
  .book-feature { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
  .book-feature__cover { max-width: 220px; }
  .amazon-author-banner { text-align: center; justify-content: center; }
  .amazon-author-banner__text { text-align: left; }
}

/* ============================================================
   AWARDS PAGE
   ============================================================ */
.awards-intro { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.awards-list  { display: flex; flex-direction: column; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.award-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.8rem; align-items: start;
  background: var(--white); border: 1px solid #e8e2d9;
  border-radius: 4px; padding: 2rem 2.2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.award-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.award-item__icon {
  width: 56px; height: 56px;
  background: rgba(201,146,42,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.award-item__year {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
}
.award-item__title { font-size: 1.1rem; margin-bottom: .35rem; }
.award-item__desc  { font-size: .92rem; color: var(--mid); line-height: 1.55; margin: 0; }

.recognition-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.recognition-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 1.8rem;
  transition: background var(--transition);
}
.recognition-card:hover { background: rgba(255,255,255,.1); }
.recognition-card__pub {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.recognition-card p { font-size: .95rem; color: rgba(255,255,255,.75); margin: 0; }

@media (max-width: 600px) {
  .award-item { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-info__item {
  display: flex; gap: 1.2rem; margin-bottom: 2.2rem; align-items: flex-start;
}
.contact-info__icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: rgba(201,146,42,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
}
.contact-info__value { font-size: .98rem; color: var(--text); }
.contact-info__value a:hover { color: var(--gold); }

.contact-form { background: var(--cream); padding: 2.8rem; border-radius: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid #d9d4cb; border-radius: 3px;
  font-family: var(--ff-sans); font-size: .98rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--mid); margin-top: 1rem; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-name {
  font-family: var(--ff-serif); font-size: 1.5rem;
  color: var(--white); margin-bottom: .5rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__brand-tagline {
  font-size: .88rem; color: rgba(255,255,255,.45);
  max-width: 220px; margin-bottom: 1.4rem;
}
.footer__social { display: flex; gap: .8rem; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--white); }
.footer__col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer__col a {
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
