/* ==========================================================================
   Travel Collection — brand stylesheet for tc-pages
   Mirrors the tokens used on travelcollection.co so pages match the real site.
   DO NOT add colors that aren't defined here. There is no gold in this brand.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  /* Canonical brand palette — use these verbatim */
  --tc-main-blue:  #304256;
  --tc-slate-blue: #5b86a0;
  --tc-brown:      #211914;
  --tc-off-white:  #eeeeee;

  /* Site tokens (match travelcollection.co) */
  --bg:          oklch(0.98 0.005 80);
  --bg-warm:     oklch(0.95 0.012 70);
  --bg-deep:     oklch(0.22 0.015 50);
  --ink:         oklch(0.18 0.01 60);
  --ink-soft:    oklch(0.35 0.01 60);
  --muted:       oklch(0.48 0.012 70);
  --line:        oklch(0.88 0.008 70);
  --accent:      #4a7590;
  --accent-soft: oklch(0.94 0.02 230);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --measure: 720px;   /* comfortable reading width */
  --wide:    1140px;  /* full layout width */
}

/* ————————————— base ————————————— */

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
html, body { overflow-x: hidden; max-width: 100vw; }

/* ————————————— layout ————————————— */

.wrap  { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

/* .prose shares the same left edge as .wrap, but caps line length for reading */
.prose { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 24px; }
.prose > * { max-width: var(--measure); }
.prose > * + * { margin-top: 20px; }

section { padding: 72px 0; }
section + section { border-top: 1px solid var(--line); }

/* ————————————— type ————————————— */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(38px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(21px, 2.6vw, 26px); }
h4 { font-size: 19px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--ink);
}

small, .fine { font-size: 13px; color: var(--muted); }

ul, ol { padding-left: 22px; }
li + li { margin-top: 8px; }

/* ————————————— components ————————————— */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--bg-deep);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--bg-deep);
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-warm); color: var(--ink); border-color: var(--ink-soft); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}
.card h3 { margin-bottom: 8px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.hero {
  padding: 120px 0 84px;
  background: var(--bg-warm);
}
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 + .lede { margin-top: 20px; max-width: var(--measure); }

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.site-header img { height: 44px; width: auto; }

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ————————————— responsive ————————————— */

@media (max-width: 820px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .hero { padding: 72px 0 56px; }
}
