/* ============================================================
   ISLATILE — Artisan Luxury Design System
   Ivory · Terracotta · Brass — Cormorant Garamond + Plus Jakarta Sans
   Loaded LAST so it overrides the legacy template on every page.
   ============================================================ */

:root {
  --ivory: #FAF6F0;
  --cream: #F2EBE0;
  --sand: #E8DCC8;
  --line: #E3D9C8;
  --ink: #221D18;
  --ink-soft: #4A4238;
  --muted: #7C7263;
  --clay: #A6452E;
  --clay-deep: #83341F;
  --brass: #A88A59;
  --brass-soft: #C9B48C;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 10px rgba(34, 29, 24, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(34, 29, 24, 0.25);
  --radius: 18px;
  --nav-h: 72px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--ivory);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; }

::selection { background: var(--clay); color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.25rem; }
h6 { font-size: 0.98rem; }

p, ul, ol, table, .custom-form { color: var(--ink-soft); }

a { color: var(--clay); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--clay-deep); }

/* Eyebrow / overline */
em { font-style: normal; }

/* ---------- Section system ---------- */
.section-padding { padding-top: 6.5rem; padding-bottom: 6.5rem; }

.section-bg { background-color: var(--ivory); }

.barista-section,
.menu-section,
.about-section,
.contact-section {
  position: relative;
}

/* Alt ivory/cream banding */
section:nth-of-type(even).section-padding { background-color: var(--ivory); }

.barista-section.section-bg { background-color: var(--cream); }
.menu-section { background-color: var(--ivory); }

.section-overlay { display: none; }

/* Overline pattern */
.barista-section > .container > .row > .col-12.text-center em,
.menu-section .menu-block-wrap > .text-center em,
.footer-container ~ em,
.site-footer em {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}

.barista-section > .container > .row > .col-12.text-center h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--ink);
}

/* ---------- Header / Navbar (unified) ---------- */
.navbar,
.navbar.custom-navbar,
.navbar:not(.custom-navbar) {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  border-radius: 0;
  z-index: 1040;
  background: rgba(250, 246, 240, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.custom-navbar,
.navbar:not(.custom-navbar) { position: sticky !important; top: 0 !important; left: 0 !important; }

.navbar.is-stuck,
.navbar.shrink {
  box-shadow: 0 10px 30px -18px rgba(34, 29, 24, 0.35);
}

.navbar .container { min-height: var(--nav-h); display: flex; align-items: center; }

/* Brand */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif) !important;
  font-size: 1.55rem !important;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--ink) !important;
  text-transform: none;
}

.navbar-brand-image,
.navbar-brand img {
  width: 40px;
  height: auto;
}

.navbar-brand:hover { color: var(--clay) !important; }

/* Links */
.navbar .nav-link,
.navbar:not(.custom-navbar) .nav-link,
.navbar.custom-navbar .nav-link {
  font-family: var(--sans);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  margin: 0 1.05rem;
  padding: 0.4rem 0 !important;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.35s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar:not(.custom-navbar).shrink .nav-link:hover,
.navbar:not(.custom-navbar).shrink .nav-link.active,
.navbar.custom-navbar .nav-link:hover,
.navbar.custom-navbar .nav-link.active {
  color: var(--clay) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 100%; }

.navbar:not(.custom-navbar).shrink .nav-link { color: var(--ink-soft) !important; }
.navbar:not(.custom-navbar).shrink .navbar-brand { color: var(--ink) !important; }

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus { box-shadow: none; outline: none; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--sans); border-radius: 999px; }

.custom-btn,
.btn.custom-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--clay);
  border: 1.5px solid var(--clay);
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px -12px rgba(166, 69, 46, 0.55);
}

.custom-btn:hover,
.btn.custom-btn:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(131, 52, 31, 0.6);
}

.custom-border-btn,
.btn.custom-border-btn {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}

.custom-border-btn:hover,
.btn.custom-border-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-primary {
  background: var(--clay);
  border-color: var(--clay);
  border-radius: 999px;
}

.btn-primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
}

/* ---------- Hero (home) ---------- */
.box,
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  height: auto;
  display: flex;
  align-items: center;
  background: #251f1a;
  overflow: hidden;
}

.box video,
.hero-section video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.box::after,
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 105% at 50% 42%, rgba(34, 29, 24, 0.34) 0%, rgba(34, 29, 24, 0.62) 55%, rgba(34, 29, 24, 0.85) 100%);
}

.box .content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
}

.box .content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1.4rem;
}

.box .content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.trust-bar .trust-item { padding: 1.4rem 1.4rem; text-align: center; background: rgba(34, 29, 24, 0.35); }

.trust-bar .trust-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}

.trust-bar .trust-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- About section ---------- */
.about-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  overflow: hidden;
}

.about-section h2.text-white,
.about-section .text-white { color: var(--ink) !important; }

.about-section .ratio {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-section .custom-video { object-fit: cover; width: 100%; height: 100%; }

.about-video-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(34, 29, 24, 0.85));
}

.about-video-info h4 { color: #fff; font-size: 1.15rem; }

/* ---------- Team / product category cards ---------- */
.team-block-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.team-block-wrap:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-block-image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }

.team-block-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-block-wrap:hover .team-block-image { transform: scale(1.06); }

.team-block-info {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  background: linear-gradient(200deg, transparent 45%, rgba(34, 29, 24, 0.82) 100%);
}

.team-block-info h4 { color: #fff; font-size: 1.5rem; }

.team-block-info .badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--clay);
  font-family: var(--serif);
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-left: 0.75rem !important;
  letter-spacing: 0.06em;
}

.team-block-info .btn { position: relative; z-index: 2; }

/* ---------- Menu block (info panels) ---------- */
.menu-block-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.menu-block-wrap h4 { color: var(--ink) !important; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--sans); font-size: 1rem; font-weight: 700; }

.menu-block {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-block h6 {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
}

.menu-block small { color: var(--brass); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.68rem; }

.underline {
  display: block;
  border-bottom: 2px solid var(--brass);
  width: 3rem;
  margin: 0.9rem 0 0.3rem;
}

/* ---------- Pillar / Wholesale / Hexagonal page heroes ---------- */
.hero-mini {
  background: linear-gradient(120deg, var(--cream) 0%, var(--ivory) 55%, var(--sand) 100%);
  color: var(--ink);
  padding: 6rem 1.25rem 4.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-mini h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-mini em {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}

.hero-mini p {
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.article-body { padding: 3.6rem 0 4.5rem; }

.article-body h2 {
  color: var(--ink);
  font-weight: 600;
  margin: 2.4rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--line);
}

.article-body h3 { color: var(--clay); }

.article-body p { line-height: 1.8; color: var(--ink-soft); }
.article-body ul li { margin-bottom: 0.5rem; }

.spec-item {
  background: var(--white);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.8rem;
}

.spec-item h2,
.spec-item h3 {
  border: none;
  margin: 0 0 0.6rem;
  padding: 0;
  font-size: 1.25rem;
  color: var(--ink);
}

.size-card h3 { font-size: 1.2rem; color: var(--ink); }

.cta-box {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.4rem;
  text-align: center;
  margin-top: 2.4rem;
  box-shadow: var(--shadow-lg);
}

.cta-box h3 { color: #fff; font-size: 1.5rem; }
.cta-box p { color: rgba(255, 255, 255, 0.82); }
.cta-box a { margin: 0 0.4rem; }

/* ---------- Legal pages ---------- */
header {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

header h1 { color: #fff; }

header p { color: rgba(255, 255, 255, 0.75); }

.content { max-width: 900px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }

.content h2 { color: var(--ink); }

.content p { color: var(--ink-soft); }

/* ---------- Explore (pillar-style) sections ---------- */
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.explore__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.explore__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.explore__content .section__subheader {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.explore__content .section__header {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.explore__content .section__description { color: var(--ink-soft); margin-bottom: 2rem; }

@media (min-width: 992px) {
  .explore__container {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
}

/* ---------- Accordion ---------- */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.accordion-button {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  padding: 1.3rem 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--clay);
  background: var(--white);
}

.accordion-button::after { filter: none; color: var(--clay); }

.accordion-body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }
.accordion-body a { color: var(--clay); font-weight: 600; }

/* ---------- Forms ---------- */
.custom-form .form-label,
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-control {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--ink);
}

.form-control:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 0.2rem rgba(166, 69, 46, 0.12);
  background: var(--white);
  color: var(--ink);
}

.form-control::placeholder { color: var(--muted); }

textarea.form-control { min-height: 140px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.blog-post img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.blog-post-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }

.blog-post-title {
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.blog-post-date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.blog-post-text { color: var(--ink-soft); margin-bottom: 1.4rem; flex: 1; }

.blog-post .custom-btn { align-self: flex-start; }

/* Article body */
.blog-image { width: 100%; border-radius: var(--radius); margin-bottom: 1.6rem; box-shadow: var(--shadow-sm); }

.blog-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.blog-date {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.blog-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.9rem;
  color: var(--ink);
}

.blog-content h2::before {
  content: '';
  display: inline-block;
  width: 1.4rem;
  height: 3px;
  background: var(--brass);
  margin-right: 0.75rem;
  vertical-align: middle;
}

.blog-content a { font-weight: 600; }

.blog-content ul { padding-left: 1.2rem; }
.blog-content li { margin-bottom: 0.5rem; }

.blog-content blockquote {
  border-left: 3px solid var(--brass);
  padding: 0.2rem 1.4rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.6rem 0;
}

.advertisement {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1.6rem;
  transition: transform 0.3s ease;
}

.advertisement:hover { transform: scale(1.03); }

.btn-back {
  display: inline-block;
  margin: 1rem 1.6rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.btn-back:hover { color: var(--clay-deep); }

/* ============================================================
   TABLES (legal / specs)
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

th, td {
  border: 1px solid var(--line);
  padding: 0.85rem 1.1rem;
  vertical-align: top;
}

th { background: var(--cream); font-weight: 700; color: var(--ink); }

/* ============================================================
   FOOTER (unified)
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.8);
  padding: 4.5rem 0 0;
}

.site-footer h4,
.site-footer .footer-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  text-transform: none;
}

.site-footer .footer-brand img { width: 46px; }

.site-footer p,
.site-footer a,
.site-footer li { color: rgba(250, 246, 240, 0.78); font-size: 0.92rem; }

.site-footer a:hover { color: #fff; }

.site-footer .footer-cta {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--brass-soft);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer ul.footer-list li,
.site-footer ul li { margin-bottom: 0.6rem; }

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 246, 240, 0.25);
  border-radius: 999px;
  color: rgba(250, 246, 240, 0.85) !important;
}

.social-links a:hover { background: var(--clay); border-color: var(--clay); color: #fff !important; }

.site-footer .footer-divider {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  margin: 2.5rem 0 0;
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer .footer-legal a {
  margin-right: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.site-footer .ship-logos { display: flex; gap: 1rem; align-items: center; }

.site-footer .ship-logos img { height: 30px; width: auto; opacity: 0.85; }

.site-footer .copyright-text { font-size: 0.85rem; color: rgba(250, 246, 240, 0.6); }

/* ------------- Legacy footer containers (kept for safety) ------------- */
.footer-container { background: var(--ink); color: rgba(250, 246, 240, 0.8); padding: 4rem 2rem 0; display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-section h4 { font-family: var(--serif); color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-section img { width: 46px; }
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 0.55rem; }
.footer-list a, .footer-section a { color: rgba(250, 246, 240, 0.78); }
.footer-list a:hover { color: #fff; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(250, 246, 240, 0.12); padding: 1.3rem 0; font-size: 0.85rem; color: rgba(250, 246, 240, 0.6); }

/* Legacy tooplate footer pieces */
.opening-hours-list { list-style: none; padding: 0; }
.opening-hours-list li { color: rgba(250, 246, 240, 0.8); }
.opening-hours-list strong { color: #fff; margin-left: auto; }
.site-footer-link { color: rgba(250, 246, 240, 0.8); }
.social-icon { list-style: none; display: flex; gap: 0.7rem; padding: 0; }
.social-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid rgba(250,246,240,0.25);
  border-radius: 999px; color: rgba(250,246,240,0.85);
}
.social-icon-link:hover { background: var(--clay); border-color: var(--clay); color: #fff; }

/* Generic page footers (legal/blog inline dark) coerced to same look */
footer.bg-dark { background: var(--ink) !important; color: rgba(250, 246, 240, 0.8) !important; }

/* ============================================================
   MISC
   ============================================================ */
.custom-video { object-fit: cover; }

.badge { border-radius: 999px; }

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  border: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-btn.visible { opacity: 1; visibility: visible; }

.preloader { position: fixed; inset: 0; background: var(--ivory); z-index: 9999; display: flex; align-items: center; justify-content: center; }

/* Utility */
.text-uppercase { letter-spacing: 0.1em; }

/* Legacy blog scaffold resets */
body { padding-top: 0 !important; }
.content-section { margin-top: 0 !important; padding-top: 3.2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar .nav-link,
  .navbar:not(.custom-navbar) .nav-link,
  .navbar.custom-navbar .nav-link {
    margin: 0 0.5rem;
    font-size: 0.66rem !important;
    letter-spacing: 0.1em;
  }

  .navbar-brand { font-size: 1.3rem !important; letter-spacing: 0.18em; }

  .navbar .btn.custom-btn { padding: 0.65rem 1.1rem !important; letter-spacing: 0.1em; }

  .navbar .btn.custom-btn i { display: none; }
}

@media (max-width: 991.98px) {
  .navbar .container { min-height: 64px; }

  .navbar-collapse {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(320px, 86vw);
    height: 100vh;
    margin-top: 0;
    padding: 5rem 1.35rem 2rem;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: rgba(250, 246, 240, 0.99);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar-collapse.active {
    display: block !important;
    animation: navSlideIn 0.35s ease;
  }

  @keyframes navSlideIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .navbar-collapse .nav-link { color: var(--ink-soft) !important; }
  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active { color: var(--clay) !important; }

  .navbar .nav-link { margin: 0.35rem 0; }

  .section-padding { padding-top: 4.5rem; padding-bottom: 4.5rem; }

  .box,
  .hero-section { min-height: auto; align-items: flex-start; }

  .box .content { padding: 5.5rem 1.25rem 3.5rem; }
}

@media (max-width: 576px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CUSTOM ORDER CALLOUT
   ============================================================ */
.custom-order {
  position: relative;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  padding: 3.2rem 2.75rem 2.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
}

.custom-order::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--brass));
}

.custom-order::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 138, 89, 0.10), transparent 46%),
    radial-gradient(circle at 0% 100%, rgba(166, 69, 46, 0.07), transparent 46%);
  pointer-events: none;
}

.custom-order > * { position: relative; z-index: 1; }

.custom-order-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}

.custom-order-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.custom-order-text {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.custom-order-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.custom-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.custom-order-btn i { font-size: 1.05rem; }

.custom-order-btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(37, 211, 102, 0.85);
}

.custom-order-btn--whatsapp:hover {
  background: #1EBE5A;
  color: #fff;
  transform: translateY(-2px);
}

.custom-order-btn--mail {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.custom-order-btn--mail:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
}

.custom-order-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.custom-order-note i { color: var(--brass); font-size: 1.05rem; }

@media (max-width: 576px) {
  .custom-order { padding: 2.4rem 1.5rem 2.1rem; }
  .custom-order-actions { flex-direction: column; }
  .custom-order-btn { justify-content: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: grid; gap: 1.1rem; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.contact-info-card .ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--clay);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.contact-info-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 0.35rem; }
.contact-info-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.contact-info-card a { color: var(--clay); font-weight: 600; }
.contact-info-card a:hover { color: var(--clay-deep); }

.contact-info-card .custom-order-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 { color: var(--ink); margin-bottom: 1.6rem; font-size: 1.7rem; }

.contact-form-wrap .btn-primary { background: var(--clay); border-color: var(--clay); }
.contact-form-wrap .btn-primary:hover { background: var(--clay-deep); border-color: var(--clay-deep); }

.contact-map {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 991.98px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
}