/* =========================================================================
   Rubi Reisid — "Maritime Elegance" (navy + gold)
   Ported from the standalone Tailwind build into hand-written CSS.
   ========================================================================= */
:root {
  --navy: #001F3F;
  --gold: #D4AF37;
  --gold-soft: #ffe088;
  --river-blue: #13607E;
  --charcoal: #292929;
  --ink: #1b1b1c;
  --on-variant: #43474e;
  --bg: #fcf8f9;
  --surface: #fcf8f9;
  --surface-low: #f6f3f4;
  --surface-cont: #f0edee;
  --surface-high: #eae7e8;
  --outline-variant: #c4c6cf;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --wrap: 1200px;
  --pad: 24px;
  --sec: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--navy); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle; line-height: 1;
}

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.bg-white { background: var(--white); }
.bg-light { background: var(--surface-low); }
.bg-navy { background: var(--navy); color: var(--white); }
.eyebrow { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--on-variant); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 2.25rem; border-radius: .5rem; font-weight: 700;
  font-size: 14px; letter-spacing: .03em; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s var(--ease), background-color .25s, color .25s, box-shadow .25s;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--river-blue); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 1.15rem 2.6rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 14px; color: var(--navy); transition: color .2s; }
.link-arrow:hover { color: var(--gold); }
.link-arrow .material-symbols-outlined { font-size: 20px; transition: transform .25s var(--ease); }
.link-arrow:hover .material-symbols-outlined { transform: translateX(4px); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   Navbar
   ========================================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 50; width: 100%;
  background: rgba(252,248,249,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,198,207,.3); transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,31,63,.07); }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 6px; }
.nav-logo img { height: 72px; width: auto; }
.nav-logo .logo-text { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a { font-size: 14px; font-weight: 700; letter-spacing: .03em; color: var(--on-variant); transition: color .25s; }
.nav-links > a:hover { color: var(--gold); }
.nav-links > a.is-active { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: none; align-items: center; gap: .35rem; font-size: 14px; font-weight: 700; color: var(--on-variant); }
.nav-phone:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--white); padding: .65rem 1.5rem; border-radius: .5rem; font-size: 14px; font-weight: 700; transition: background-color .2s, transform .15s; }
.nav-cta:hover { background: var(--river-blue); }
.nav-cta:active { transform: scale(.96); }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle-bar { width: 24px; height: 2px; background: var(--navy); transition: transform .3s, opacity .3s; }
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .nav-phone { display: inline-flex; } }
@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--surface); border-bottom: 1px solid rgba(196,198,207,.4);
    padding: .5rem var(--pad) 1rem; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav-links.open { max-height: 340px; }
  .nav-links > a { width: 100%; padding-block: .8rem; }
  .nav-links > a.is-active { border-bottom: 0; color: var(--gold); }
}
@media (min-width: 901px) { .nav-toggle { display: none; } }

/* =========================================================================
   Hero (home)
   ========================================================================= */
.hero { position: relative; min-height: 600px; height: 80vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,31,63,.7), rgba(0,31,63,.4) 50%, transparent); }
.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(36px, 6vw, 48px); color: var(--white); margin-bottom: 1.5rem; letter-spacing: -.01em; }
.hero-sub { font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,.9); margin-bottom: 2.5rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================================
   Intro split (home)
   ========================================================================= */
.intro { background: var(--surface); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.intro-copy h2 { font-size: clamp(28px, 3.4vw, 32px); margin-bottom: 1.5rem; }
.intro-copy p { color: var(--on-variant); margin-bottom: 1.5rem; line-height: 1.8; }
.intro-media { position: relative; }
.intro-media .frame { aspect-ratio: 4/5; border-radius: .75rem; overflow: hidden; box-shadow: 0 25px 60px -20px rgba(0,31,63,.4); }
.intro-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge { position: absolute; bottom: -2rem; left: -2rem; background: var(--white); padding: 2rem; border-radius: .5rem; box-shadow: 0 15px 40px rgba(0,31,63,.15); border: 1px solid rgba(196,198,207,.2); }
.intro-badge .num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--navy); }
.intro-badge .lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--on-variant); }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; } .intro-badge { display: none; } }

/* =========================================================================
   Feature cards (home)
   ========================================================================= */
.features { background: var(--surface-low); }
.section-head { text-align: center; max-width: 48rem; margin: 0 auto clamp(3rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 32px); margin-bottom: 1rem; }
.section-head p { color: var(--on-variant); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--white); padding: 2.5rem; border: 1px solid rgba(196,198,207,.3); border-radius: .5rem; transition: box-shadow .3s, transform .3s; }
.feature-card:hover { box-shadow: 0 18px 40px -22px rgba(0,31,63,.35); transform: translateY(-4px); }
.feature-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-high); display: grid; place-items: center; margin-bottom: 2rem; transition: background-color .3s; }
.feature-ic .material-symbols-outlined { font-size: 30px; color: var(--navy); transition: color .3s; }
.feature-card:hover .feature-ic { background: var(--navy); }
.feature-card:hover .feature-ic .material-symbols-outlined { color: var(--white); }
.feature-card h3 { font-size: 24px; margin-bottom: 1rem; }
.feature-card p { color: var(--on-variant); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Gallery strip (home preview)
   ========================================================================= */
.gstrip { background: var(--surface); }
.gstrip-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 3rem; }
.gstrip-head h2 { font-size: clamp(28px, 3.4vw, 32px); margin-bottom: .4rem; }
.gstrip-head p { color: var(--on-variant); }
.gstrip-link { font-size: 14px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.gstrip-link:hover { color: var(--gold); }
.gstrip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gstrip-grid a { aspect-ratio: 1; overflow: hidden; border-radius: .5rem; }
.gstrip-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gstrip-grid a:hover img { transform: scale(1.1); }
@media (max-width: 700px) { .gstrip-grid { grid-template-columns: repeat(2, 1fr); } .gstrip-link { display: none; } }

/* =========================================================================
   Testimonials (home)
   ========================================================================= */
.tmonials { position: relative; overflow: hidden; background: var(--navy); color: var(--white); padding-block: clamp(64px, 8vw, 96px); }
.tmonials::before { content: ""; position: absolute; top: 0; right: 0; width: 33%; height: 100%; background: rgba(212,175,55,.05); transform: skewX(-12deg) translateX(80px); }
.tmonials-inner { position: relative; z-index: 1; max-width: 64rem; margin-inline: auto; }
.tmonials h2 { color: var(--white); text-align: center; font-size: clamp(28px, 3.4vw, 32px); margin-bottom: 3rem; }
.tmonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.tmonial { display: flex; flex-direction: column; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: .75rem; padding: 2rem; backdrop-filter: blur(4px); }
.tmonial .quote-ic { color: var(--gold); font-size: 30px; margin-bottom: 1rem; }
.tmonial blockquote { font-style: italic; line-height: 1.7; flex-grow: 1; }
.tmonial figcaption { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.tmonial .avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 700; }
.tmonial .who { font-size: 14px; font-weight: 700; }
.tmonial .role { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); }
@media (max-width: 800px) { .tmonial-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { text-align: center; }
.cta-band.bg-navy h2 { color: var(--white); }
.cta-band h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 2rem; }
.cta-band p { font-size: 18px; color: var(--on-variant); max-width: 42rem; margin: 0 auto 3rem; }
.cta-band.bg-navy p { color: rgba(255,255,255,.8); }

/* =========================================================================
   Page hero (subpages)
   ========================================================================= */
.page-hero { position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); min-height: 480px; }
.page-hero.short { min-height: auto; padding-block: clamp(80px, 12vw, 112px); }
.page-hero .ph-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero .ph-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,31,63,.7), transparent); }
.page-hero.center .ph-media::after { background: linear-gradient(to top, var(--navy), rgba(0,31,63,.5)); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero.center .page-hero-inner { text-align: center; max-width: 44rem; margin-inline: auto; }
.page-hero h1 { color: var(--white); font-size: clamp(36px, 5vw, 48px); margin-bottom: 1.5rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 36rem; }
.page-hero.center p { margin-inline: auto; }
.page-hero .btn { margin-top: .5rem; }

/* =========================================================================
   Services bento (teenused)
   ========================================================================= */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.bento-cell { position: relative; overflow: hidden; border-radius: .75rem; border: 1px solid rgba(196,198,207,.3); min-height: 400px; }
.bento-feature { grid-column: span 8; }
.bento-side { grid-column: span 4; background: var(--navy); }
.bento-wide { grid-column: span 12; background: var(--white); display: flex; flex-direction: row; }
.bento-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.bento-cell:hover img { transform: scale(1.05); }
.bento-feature .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,31,63,.9), rgba(0,31,63,.2) 50%, transparent); }
.bento-feature .content { position: absolute; bottom: 0; left: 0; padding: 2rem; width: 100%; z-index: 1; }
.bento-feature h3 { color: var(--white); font-size: 24px; margin-bottom: .5rem; }
.bento-feature p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; max-width: 28rem; }
.bento-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.bento-tags span { background: rgba(255,255,255,.1); backdrop-filter: blur(6px); padding: .25rem .75rem; border-radius: .25rem; color: var(--white); font-size: 12px; font-weight: 700; }
.bento-side .pad { padding: 2rem; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.bento-side .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; margin-bottom: 1.5rem; }
.bento-side .ic .material-symbols-outlined { color: var(--navy); }
.bento-side h3 { color: var(--white); font-size: 24px; margin-bottom: 1rem; }
.bento-side > .pad > div:first-child p { color: rgba(255,255,255,.7); }
.bento-side ul { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: .75rem; }
.bento-side li { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 700; }
.bento-side li .material-symbols-outlined { color: var(--gold); font-size: 18px; }
.bento-wide .text { width: 50%; padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.bento-wide h3 { font-size: 24px; margin-bottom: 1rem; }
.bento-wide p { color: var(--on-variant); margin-bottom: 1.5rem; }
.bento-wide .media { width: 50%; position: relative; min-height: 280px; }
@media (max-width: 900px) {
  .bento-feature, .bento-side, .bento-wide { grid-column: span 12; }
  .bento-wide { flex-direction: column; }
  .bento-wide .text, .bento-wide .media { width: 100%; }
  .bento-wide .media { min-height: 240px; }
}

/* =========================================================================
   Process steps (teenused)
   ========================================================================= */
.process-split { display: flex; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.process-split > div { flex: 1; }
.process-split h2 { font-size: clamp(26px, 3vw, 32px); margin-bottom: 2rem; }
.process-list { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1rem; }
.process-step .n { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-weight: 700; }
.process-step h4 { font-family: var(--sans); font-weight: 700; color: var(--navy); font-size: 18px; margin-bottom: .25rem; }
.process-step p { color: var(--on-variant); }
.process-media { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(0,31,63,.35); padding: .5rem; background: var(--white); }
.process-media img { width: 100%; height: 500px; object-fit: cover; border-radius: .75rem; }
@media (max-width: 900px) { .process-split { flex-direction: column; } .process-media img { height: 320px; } }

/* =========================================================================
   Amenities (teenused)
   ========================================================================= */
.amenities { background: var(--navy); padding-block: 3rem; }
.amenity-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.amenity { display: flex; align-items: center; gap: .5rem; border: 1px solid rgba(212,175,55,.3); background: rgba(255,255,255,.05); padding: .5rem 1rem; border-radius: 999px; color: var(--white); font-size: 14px; font-weight: 700; }
.amenity .material-symbols-outlined { color: var(--gold); font-size: 18px; }

/* =========================================================================
   Pricing card (hinnakiri)
   ========================================================================= */
.pricing-wrap { max-width: 48rem; margin-inline: auto; margin-top: -2.5rem; position: relative; z-index: 2; }
.pricing-card { background: var(--white); border: 1px solid rgba(196,198,207,.2); border-radius: 1rem; box-shadow: 0 30px 60px -25px rgba(0,31,63,.25); overflow: hidden; }
.pricing-rate { text-align: center; padding: 3rem 2rem 2.5rem; border-bottom: 1px solid rgba(196,198,207,.2); }
.pricing-rate .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: var(--on-variant); }
.pricing-rate .amount { display: flex; align-items: flex-end; justify-content: center; gap: .5rem; margin-top: 1rem; }
.pricing-rate .amount .big { font-family: var(--serif); font-size: clamp(64px, 9vw, 88px); line-height: .9; color: var(--navy); }
.pricing-rate .amount .unit { font-family: var(--serif); font-size: 24px; color: var(--gold); margin-bottom: .75rem; }
.pricing-rows > div { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem clamp(2rem, 4vw, 3rem); border-bottom: 1px solid rgba(196,198,207,.2); }
.pricing-rows .ic { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--surface-high); display: grid; place-items: center; }
.pricing-rows .ic .material-symbols-outlined { color: var(--river-blue); }
.pricing-rows h3 { font-family: var(--sans); font-weight: 700; color: var(--navy); font-size: 18px; margin-bottom: .25rem; }
.pricing-rows p { color: var(--on-variant); }
.pricing-foot { background: var(--surface-low); padding: 2rem clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.pricing-foot p { color: var(--on-variant); }
.pricing-foot a.phone { color: var(--navy); font-weight: 700; }
.pricing-foot a.phone:hover { color: var(--gold); }

/* =========================================================================
   Gallery grid (galerii)
   ========================================================================= */
.gintro { text-align: center; padding-block: clamp(64px, 8vw, 80px) clamp(2.5rem, 4vw, 4rem); }
.gintro h1 { font-size: clamp(36px, 5vw, 48px); margin-bottom: 1.5rem; }
.gintro .rule { width: 6rem; height: 3px; background: var(--gold); margin: 0 auto 2rem; }
.gintro p { color: var(--on-variant); font-size: 18px; max-width: 42rem; margin-inline: auto; }
.gbento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-rows: 300px; }
.gbento figure { position: relative; overflow: hidden; border-radius: .5rem; grid-column: span 4; background: var(--surface-cont); border: 1px solid rgba(196,198,207,.1); }
.gbento figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gbento figure:hover img { transform: scale(1.05); }
.gbento figcaption { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity .3s; background: linear-gradient(to top, rgba(0,31,63,.7), transparent 60%); }
.gbento figure:hover figcaption { opacity: 1; }
.gbento figcaption span { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 800px) { .gbento { grid-template-columns: 1fr; grid-auto-rows: 250px; } .gbento figure { grid-column: span 1 !important; grid-row: span 1 !important; } }

/* =========================================================================
   Footer + mobile booking bar
   ========================================================================= */
.site-footer { background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-block: clamp(64px, 7vw, 80px) 3rem; }
.footer-brand .fname { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: .75rem; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 20rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: all .25s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-col h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--gold); }
.footer-col .ico-row { display: flex; align-items: center; gap: .75rem; }
.footer-col .ico-row .material-symbols-outlined { color: var(--gold); font-size: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,.4); }

.footer-credit { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; text-decoration: none; }
.footer-credit-name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.9), transparent), linear-gradient(90deg, var(--gold), var(--gold-soft));
  background-size: 200% 100%, 100% 100%; background-position: 200% 0, 0 0;
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-credit-sub { font-size: .6rem; letter-spacing: .02em; color: rgba(255,255,255,.4); }
@media (prefers-reduced-motion: no-preference) {
  .footer-credit:hover .footer-credit-name { animation: footer-shimmer .8s forwards; }
}
@keyframes footer-shimmer { from { background-position: 200% 0, 0 0; } to { background-position: -200% 0, 0 0; } }

.mobile-book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--navy); border-top: 1px solid rgba(212,175,55,.3); padding: .75rem 1rem;
  align-items: center; justify-content: space-between; }
.mobile-book-bar .mb-lbl { color: rgba(255,255,255,.6); font-size: 12px; display: block; }
.mobile-book-bar .mb-price { color: var(--gold); font-weight: 700; font-size: 14px; }
.mobile-book-bar .btn { padding: .65rem 1.5rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-book-bar { display: flex; }
  .site-footer { padding-bottom: 72px; }
}
