/* Ferry Unique — a boutique curating genuinely hard-to-find gifts and homeware.
   Design: warm editorial, NOT pearl/mauve. Warm white base, sage green + terracotta
   accents, modern serif headings, clean sans body. Completely distinct from sibling sites. */

:root {
  --bg: #f9f7f2;           /* warm off-white */
  --bg-soft: #f0ebe1;      /* toasted linen */
  --ink: #2c2820;          /* warm near-black */
  --muted: #7a7267;        /* warm grey-brown */
  --primary: #8a9a7b;      /* sage green */
  --accent: #c4744f;       /* terracotta */
  --line: #e0d9ce;
  --border: #e0d9ce;
  --card: #ffffff;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 17px;
}

/* Use a clean sans for body text, serif only for headings */
body p, body li, body a, body span, body td, body label, .eyebrow, .pill, .nav-links a, .btn, .footer-meta {
  font-family: "Gill Sans", "Gill Sans MT", "Optima", "Segoe UI", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Book Antiqua", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

a { color: var(--accent); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 14px;
}

/* ---- Header ---- */
header {
  background: rgba(249, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Georgia", "Iowan Old Style", serif;
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--accent); }
.brand-icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--accent); }
.brand-icon path, .brand-icon circle, .brand-icon rect, .brand-icon line { vector-effect: non-scaling-stroke; }

.nav-links { display: flex; gap: 30px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 65%);
  text-align: center;
  padding: 96px 28px 76px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 42px;
  background: var(--line);
}
.hero h1 {
  font-size: 3.1rem;
  max-width: 18ch;
  margin: 0 auto 22px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 32px;
}
.hero .btn { margin: 0 5px 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background .15s, transform .12s;
  font-family: "Gill Sans", "Gill Sans MT", "Optima", "Segoe UI", Helvetica, Arial, sans-serif;
}
.btn:hover { background: #b0613e; transform: translateY(-1px); }
.btn-soft {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-soft:hover { background: var(--primary); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ---- Sections ---- */
section { padding: 70px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 46px; }
section h2 { font-size: 2.05rem; margin-bottom: 14px; }
section p { color: var(--muted); }

/* ---- Split layout ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split.reverse .ph { order: 2; }
.ph {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(44, 40, 32, .14);
}
.ph::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Card grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(44,40,32,.10); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 22px 24px 26px; }
.pill {
  display: inline-block;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 13px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 8px; font-weight: 400; }
.card p { font-size: 0.93rem; margin: 0; color: var(--muted); }

/* ---- Prose ---- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { font-size: 1.76rem; margin: 44px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 8px; font-weight: 400; }
.prose p, .prose li { color: #4a443a; line-height: 1.82; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 10px; }

/* bordered callout box */
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  padding: 20px 24px;
  margin: 30px 0;
}
.note p { margin: 0; color: var(--ink); }

/* Pull quote */
.pull {
  font-family: "Georgia", "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.52rem;
  line-height: 1.48;
  color: var(--accent);
  text-align: center;
  max-width: 34ch;
  margin: 44px auto;
}

/* Section divider rule */
.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---- Gift grid (2-col on gift-ideas page) ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.gift-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 28px 28px 32px;
}
.gift-block h3 { font-size: 1.22rem; margin-bottom: 12px; color: var(--accent); font-weight: 400; }
.gift-block ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.78; }
.gift-block li { margin-bottom: 7px; }
.gift-block li strong { color: var(--ink); }

/* ---- CTA band ---- */
.cta { background: var(--ink); color: #ede8df; text-align: center; padding: 76px 28px; }
.cta h2 { font-size: 2.1rem; margin-bottom: 12px; color: #fff; }
.cta p { color: #b0a898; max-width: 52ch; margin: 0 auto 28px; }
.cta .btn-soft { color: var(--primary); border-color: var(--primary); }
.cta .btn-soft:hover { background: var(--primary); color: #fff; }

/* ---- Footer ---- */
footer {
  background: var(--ink);
  color: #b0a898;
  padding: 56px 0 30px;
  border-top: 1px solid rgba(138,154,123,.2);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid h4 {
  color: #e8e3da;
  font-family: "Georgia", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-grid a, .footer-grid p {
  color: #9a9186;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  font-size: 0.9rem;
  font-family: "Gill Sans", "Gill Sans MT", "Optima", "Segoe UI", Helvetica, Arial, sans-serif;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  font-size: 0.8rem;
  color: #6e6760;
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .ph { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.35rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero h1 { font-size: 1.95rem; }
}
