
  :root {
    --navy: #2C3E50;
    --navy-deep: #1a2530;
    --gold: #C5A059;
    --parchment: #F5F1E1;
    --bronze: #96714E;
    --sepia: #F5F1E1;
    --teal: #16A085;
    --wax: #8E444A;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Lato", system-ui, -apple-system, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--navy);
    background: var(--parchment);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    font-size: 0.95rem;
  }
  h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
  h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.25rem; }
  h3 { font-size: 1.25rem; }
  a { color: inherit; text-decoration: none; }
  button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
  input, textarea {
    font-family: var(--sans);
    font-size: 0.88rem;
    width: 100%;
    padding: 0.6rem 0.9rem;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: inherit;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  input:focus, textarea:focus { border-color: #e0bd6c; background: rgba(197,160,89,0.05); }
  textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
  ::placeholder { color: rgba(0,0,0,0.4); }
  .on-dark input, .on-dark textarea { color: var(--parchment); }
  .on-dark ::placeholder { color: rgba(245,241,225,0.5); }

  .label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.78rem;
    border-radius: 2px;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-family: var(--sans);
    line-height: 1;
    text-align: center;
  }
  .btn-navy { background: var(--navy); color: var(--parchment); border-color: var(--navy); }
  .btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
  .btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
  .btn-gold-outline:hover { background: var(--gold); color: var(--navy); }
  .btn-gold-outline.on-light { color: var(--bronze); border-color: var(--gold); }
  .btn-gold-outline.on-light:hover { background: var(--gold); color: var(--navy); }
  .btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
  .btn-teal:hover { background: #0f8a72; border-color: #0f8a72; }

  section {
    padding: 2.5rem 1.5rem 3.5rem;
    scroll-margin-top: 96px;
  }
  section[id] { scroll-margin-top: 96px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .narrow { max-width: 760px; margin: 0 auto; }

  .eyebrow {
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .on-dark { color: var(--sepia); }
  .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--parchment); }

  ul.feature-list {
    list-style: none;
    margin: 1rem 0 1.25rem;
  }
  ul.feature-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    font-size: 0.95rem;
  }
  ul.feature-list li:last-child { }
  ul.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }
  .on-dark ul.feature-list li { }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
  }

  /* Nav */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 96px;
    background: var(--navy);
    z-index: 100;
    border-bottom: 1px solid rgba(197,160,89,0.18);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
  }
  .seal {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--parchment);
    flex-shrink: 0;
    overflow: hidden;
    display: block;
  }
  .seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .wordmark {
    color: var(--parchment);
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
  }
  .wordmark .small {
    font-family: var(--sans);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
    font-weight: 700;
  }
  .nav-links {
    display: flex;
    gap: 1.85rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--parchment);
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.2s;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { flex-shrink: 0; font-size: 0.85rem; padding: 0.85rem 1.85rem; }
  .hamburger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--gold);
    border-radius: 2px;
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.25s, opacity 0.25s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(197,160,89,0.2);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 99;
    padding: 1.5rem;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu ul { list-style: none; }
  .mobile-menu li { border-bottom: 1px solid rgba(245,241,225,0.15); }
  .mobile-menu a {
    display: block;
    padding: 1.1rem 0;
    color: var(--sepia);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .mobile-menu .btn { width: 100%; margin-top: 1.25rem; }

  /* Hero */
  .hero {
    min-height: 72vh;
    background-color: var(--navy);
    background-image:
      linear-gradient(to right, rgba(44,62,80,0.92) 0%, rgba(44,62,80,0.75) 45%, rgba(44,62,80,0.55) 100%),
      url("assets/hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 7.5rem 1.5rem 3.5rem;
    color: var(--parchment);
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44,62,80,0) 70%, rgba(44,62,80,0.85) 100%);
    pointer-events: none;
  }
  .hero::before {
    content: none;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  .hero h1 {
    color: var(--parchment);
    margin: 1rem 0 1.25rem;
    max-width: 18ch;
    text-wrap: balance;
  }
  .hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
    display: block;
  }
  .hero p {
    max-width: 52ch;
    color: var(--sepia);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
  .hero-meta {
    position: absolute;
    bottom: -2rem;
    right: 0;
    display: flex;
    gap: 2rem;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .hero-meta span { opacity: 0.7; }

  /* Two-col layouts */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .two-col-narrow {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  /* Form */
  .form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .form-card {
    border: 1px solid rgba(197,160,89,0.4);
    padding: 1.4rem 1.5rem;
    background: rgba(197,160,89,0.04);
  }
  .form-card.on-light {
    border-color: var(--bronze);
    background: rgba(197,160,89,0.08);
  }
  .form-confirm {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--gold);
    background: rgba(197,160,89,0.07);
  }
  .form-confirm .check {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem;
  }
  .form-confirm h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  /* Shop grid */
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(150,113,78,0.25);
    border: 1px solid rgba(150,113,78,0.25);
  }
  .shop-card {
    background: var(--parchment);
    padding: 2rem 1.5rem;
    transition: background 0.2s;
  }
  .shop-card:hover { background: rgba(197,160,89,0.08); }
  @media (max-width: 980px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .shop-grid { grid-template-columns: 1fr; }
  }

  /* Pillars */
  .pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  .pillar { padding: 0; }
  .pillar .num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--bronze);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
  }
  .pillar h3 {
    font-family: var(--serif);
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
  .pillar p {
    color: var(--bronze);
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Section header pattern */
  .section-head { margin-bottom: 2rem; max-width: 720px; }
  .section-head h2 { margin-bottom: 0.5rem; }
  .section-rule {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 0.85rem;
    margin-bottom: 4px;
  }
  .head-mark {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .head-mark .eyebrow { margin-bottom: 0; }

  /* Contact */
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 3rem;
    align-items: start;
  }
  .contact-info p { margin-bottom: 0.6rem; color: var(--sepia); }
  .contact-info a { color: var(--gold); border-bottom: 1px dotted rgba(197,160,89,0.5); }
  .contact-info a:hover { border-bottom-color: var(--gold); }
  .contact-info .label { color: var(--gold); margin-bottom: 0.5rem; display: block; margin-top: 1.5rem; }
  .contact-info .label:first-child { margin-top: 0; }

  /* Footer */
  footer {
    background: var(--navy-deep);
    color: var(--sepia);
    padding: 2rem 1.5rem 1.25rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(197,160,89,0.15);
  }
  .footer-brand .seal {
    width: 88px;
    height: 88px;
    margin-bottom: 0.75rem;
  }
  .footer-brand p {
    color: var(--bronze);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    max-width: 52ch;
  }
  .footer-col h4 {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.85rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
  .footer-col a { color: var(--sepia); font-size: 0.88rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--bronze);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  .footer-bottom .right {
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
  }

  /* FAQ */
  .faq-list { display: grid; gap: 0; border-top: 1.5px solid var(--gold); }
  .faq-item { border-bottom: 1.5px solid rgba(197,160,89,0.45); }
  .faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.1rem 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--navy); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.4rem; color: var(--gold); line-height: 1; flex-shrink: 0; transition: transform 0.2s ease; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { color: var(--bronze); font-size: 0.95rem; line-height: 1.6; padding: 0 2.5rem 1.25rem 0; max-width: 62ch; }

  /* Travel Finds dual forms */
  .travel-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 2.75rem; margin: 0 auto 1.5rem; }
  .travel-features li { flex: 0 0 auto; }
  .dual-forms { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; max-width: 1000px; margin: 0 auto; }
  .dual-forms .form-card { display: flex; flex-direction: column; }
  .dual-forms .form-card .form { display: flex; flex-direction: column; gap: 0.75rem; }
  .dual-forms .form-card .form button { align-self: flex-start; }
  @media (max-width: 980px) {
    .dual-forms { grid-template-columns: 1fr; }
    .travel-features { flex-direction: column; align-items: flex-start; width: fit-content; }
  }

  /* Curated Goods categories card */
  .shop-categories { border: 1px solid rgba(150,113,78,0.35); background: rgba(197,160,89,0.06); padding: 2rem 2.25rem; max-width: 440px; margin-left: auto; width: 100%; }
  @media (max-width: 980px) { .shop-categories { margin-left: 0; max-width: none; } }

  /* Responsive */
  @media (max-width: 980px) {
    .pillars { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 1000px) {
    .nav-links, .nav-cta.desktop { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 768px) {
    section { padding: 4rem 1.25rem; }
    .hero { padding: 7rem 1.25rem 4rem; }
    .two-col, .two-col-narrow { grid-template-columns: 1fr; gap: 3rem; }
    .pillars { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .wordmark { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-meta { display: none; }
  }
  @media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .cta-row .btn { width: 100%; }
  }

  /* ===== v2 additions ===== */
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--gold);
  }

  /* Home teaser cards */
  .teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .teaser-card {
    border: 1px solid rgba(150,113,78,0.35);
    background: rgba(197,160,89,0.05);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.2s, border-color 0.2s;
  }
  .teaser-card:hover { background: rgba(197,160,89,0.12); border-color: var(--gold); }
  .teaser-card h3 { font-size: 1.5rem; color: var(--navy); }
  .teaser-card p { color: var(--bronze); font-size: 0.92rem; line-height: 1.65; flex: 1; }
  .teaser-card .btn { margin-top: 0.5rem; width: 100%; text-align: center; padding-left: 1rem; padding-right: 1rem; }
  @media (max-width: 980px) {
    .teaser-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  /* Legal pages */
  .legal-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 9rem 1.5rem 5rem;
  }
  .legal-body h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
  .legal-body .placeholder-note {
    border: 1.5px dashed var(--gold);
    background: rgba(197,160,89,0.08);
    padding: 1.5rem;
    color: var(--bronze);
    font-size: 0.95rem;
    line-height: 1.7;
  }
