/* =====================================================================
   REDCLIFFE PRINT — v8.8 MASTER STYLESHEET
   redcliffeprint.co.uk
   Template: redcliffeprint-v8.8.dwt
   ===================================================================== */

/* =====================================================================
   REDCLIFFE PRINT — v8.8 MASTER STYLESHEET
   redcliffeprint.co.uk
   Template: redcliffeprint-v8.8.dwt
   ===================================================================== */

:root {
  --teal-dark:   #2a5f6e;
  --teal-mid:    #4C7D88;
  --teal-light:  #7AADB8;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE6DC;
  --parchment:   #E0D6C8;
  --ivory:       #FFFDF7;
  --ink:         #1A2426;
  --ink-soft:    #3d5257;
  --gold:        #C9A96E;
  --gold-light:  #e8d4af;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --radius:      4px;
  --transition:  0.25s ease;
  --shadow-lg:   0 8px 40px rgba(26,36,38,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { color: var(--ink-soft); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn--primary   { background: var(--teal-dark); color: var(--ivory); border-color: var(--teal-dark); }
.btn--primary:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.btn--gold      { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--outline-light { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* =====================================================================
   HEADER — THREE-TIER STICKY
   ===================================================================== */

.site-header { position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 12px rgba(26,36,38,.07); }

/* Tier 1 — Utility bar */
.nav-tier1 { background: var(--ink); padding: .42rem 2rem; }
.nav-tier1-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}
.nav-tier1-inner a { color: rgba(255,255,255,.98); transition: color var(--transition); }
.nav-tier1-inner a:hover { color: var(--gold-light); }
.t1-stars { color: var(--gold); }
.t1-sep { color: rgba(255,255,255,.2); }

/* Tier 2 — Logo bar */
.nav-tier2 {
  background: var(--ivory);
  border-bottom: 1px solid var(--cream-dark);
  padding: .65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; mix-blend-mode: multiply; }

/* Tier 3 — Teal nav */
.site-nav { background: var(--teal-dark); border-bottom: 1px solid rgba(255,255,255,.2); }
/* .nav-inner { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }  */
.nav-inner { display: flex; align-items: stretch; overflow-x: clip; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .85rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--ivory);
  background: rgba(255,255,255,.10);
}
.nav-link svg { width: 11px; height: 11px; opacity: .7; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--ivory);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 800;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--teal-dark); }

/* Mobile hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; background: var(--teal-dark); padding: 0 0 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: .75rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color: var(--ivory); background: rgba(255,255,255,.07); }
.mobile-menu-heading {
  display: block;
  padding: .85rem 1.5rem .3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =====================================================================
   NEWSLETTER SECTION
   ===================================================================== */

.newsletter-section { background: var(--cream-dark); padding: 3.5rem 0; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner .eyebrow { display: block; margin-bottom: .5rem; }
.newsletter-inner h2 { margin-bottom: .75rem; }
.newsletter-inner p { margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--teal-mid); }
.newsletter-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: .75rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */

.site-footer { background: var(--ink); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { width: auto; height: auto; max-width: 160px; opacity: 1; }
.footer-col p { color: rgba(255,255,255,.68); font-size: 0.88rem; line-height: 1.7; }
.footer-col p em { color: rgba(255,255,255,.7); font-style: italic; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,.68); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.68); }
.footer-domains { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-domains a { font-size: 0.82rem; color: var(--teal-light); transition: color var(--transition); }
.footer-domains a:hover { color: var(--gold-light); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 960px) {
  .footer-grid { gap: 2.5rem; }
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-tier1 { display: none; }
  .site-nav  { display: none; }
  .hamburger-btn { display: flex; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 761px) {
  .nav-tier2 [data-fc-id="minicart"] {
    display: none !important;
  }
}