/* Paris Table — Fine Dining Editorial */
        :root {
          --bg: #faf7f2;
          --card-bg: #ffffff;
          --accent: #1a1a2e;
          --secondary: #8b6f4e;
          --text: #2a2520;
          --muted: #7a7168;
          --border: rgba(0,0,0,0.08);
          --cream-scroll: #faf7f2;
          --font-heading: 'Cormorant Garamond', Georgia, serif;
          --font-body: 'Source Sans 3', system-ui, sans-serif;
          --nav-h: 68px;
          --max-editorial: 700px;
          --container: 1180px;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
          margin: 0;
          font-family: var(--font-body);
          font-weight: 400;
          font-size: 1.05rem;
          line-height: 1.75;
          color: var(--text);
          background: var(--bg);
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--accent); text-decoration: none; }
        a:hover { text-decoration: underline; }

        .container {
          width: min(var(--container), calc(100% - 2.5rem));
          margin-inline: auto;
        }

        /* ── Navigation ── */
        .site-nav {
          position: fixed;
          top: 0; left: 0; right: 0;
          height: var(--nav-h);
          z-index: 1000;
          background: transparent;
          transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }
        .site-nav.scrolled {
          background: var(--cream-scroll);
          border-bottom: 1px solid var(--border);
        }
        .nav-inner {
          display: flex;
          align-items: center;
          justify-content: space-between;
          height: var(--nav-h);
          width: min(var(--container), calc(100% - 2.5rem));
          margin-inline: auto;
        }
        .nav-logo {
          font-family: var(--font-heading);
          font-size: 1.35rem;
          font-weight: 600;
          color: var(--accent);
          letter-spacing: 0.02em;
          text-decoration: none;
          flex-shrink: 0;
        }
        .nav-links {
          display: flex;
          gap: 1.75rem;
          list-style: none;
          margin: 0 0 0 auto;
          padding: 0;
        }
        .nav-links a {
          font-size: 0.8125rem;
          letter-spacing: 0.06em;
          text-transform: uppercase;
          color: var(--text);
          text-decoration: none;
          opacity: 0.85;
        }
        .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
        .nav-hamburger {
          display: none;
          background: none;
          border: none;
          cursor: pointer;
          padding: 0.5rem;
        }
        .nav-hamburger span {
          display: block;
          width: 22px;
          height: 2px;
          background: var(--accent);
          margin: 5px 0;
        }
        .nav-mobile {
          display: none;
          position: fixed;
          top: var(--nav-h);
          left: 0; right: 0;
          background: var(--cream-scroll);
          border-bottom: 1px solid var(--border);
          padding: 1rem 1.25rem 1.5rem;
          flex-direction: column;
          gap: 0.75rem;
          z-index: 999;
        }
        .nav-mobile.open { display: flex; }
        .nav-mobile a {
          color: var(--text);
          text-decoration: none;
          font-size: 0.9375rem;
          padding: 0.35rem 0;
          border-bottom: 1px solid var(--border);
        }

        /* ── Editorial Hero (Index) ── */
        .editorial-hero {
          padding-top: calc(var(--nav-h) + 3rem);
          background: var(--bg);
        }
        .editorial-hero__text {
          width: min(var(--container), calc(100% - 2.5rem));
          margin: 0 auto 2.5rem;
          text-align: left;
        }
        .editorial-hero__title {
          font-family: var(--font-heading);
          font-size: clamp(2.5rem, 6vw, 5rem);
          line-height: 1.05;
          color: var(--accent);
          margin: 0 0 1rem;
          font-weight: 600;
        }
        .editorial-hero__subtitle {
          font-family: var(--font-body);
          font-size: clamp(1rem, 2vw, 1.25rem);
          font-weight: 300;
          font-style: italic;
          color: var(--secondary);
          max-width: 42rem;
          margin: 0;
          line-height: 1.6;
        }
        .editorial-hero__image-wrap {
          position: relative;
          width: 100%;
          aspect-ratio: 21/9;
          overflow: hidden;
        }
        .editorial-hero__image-wrap img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .editorial-hero__image-wrap::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(139, 111, 78, 0.22);
          pointer-events: none;
        }

        /* ── Index Content ── */
        .index-content {
          padding: 4rem 0 5rem;
        }
        .section-label {
          font-size: 0.6875rem;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: var(--muted);
          margin-bottom: 1.75rem;
        }
        .featured-editorial {
          display: grid;
          grid-template-columns: 1.1fr 1fr;
          gap: 0;
          background: var(--card-bg);
          overflow: hidden;
          margin-bottom: 4rem;
        }
        .featured-editorial__image img {
          width: 100%;
          height: 100%;
          min-height: 320px;
          object-fit: cover;
        }
        .featured-editorial__body {
          padding: 2.5rem 2.75rem;
          display: flex;
          flex-direction: column;
          justify-content: center;
        }
        .category-label {
          font-size: 0.6875rem;
          letter-spacing: 0.14em;
          text-transform: uppercase;
          color: var(--muted);
          margin-bottom: 0.75rem;
        }
        .featured-editorial__body h2 {
          font-family: var(--font-heading);
          font-size: clamp(1.75rem, 3vw, 2.35rem);
          margin: 0 0 1rem;
          color: var(--accent);
          line-height: 1.15;
        }
        .featured-editorial__body p {
          margin: 0 0 1.5rem;
          color: var(--secondary);
        }
        .btn-read {
          align-self: flex-start;
          font-size: 0.8125rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: var(--accent);
          border-bottom: 1px solid var(--accent);
          padding-bottom: 0.2rem;
          text-decoration: none;
        }
        .preview-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 1.75rem;
        }
        .article-card {
          display: block;
          background: var(--card-bg);
          padding: 1.75rem 1.85rem;
          text-decoration: none;
          color: inherit;
          transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .article-card:hover {
          transform: translateY(-3px);
          box-shadow: 0 12px 32px rgba(0,0,0,0.06);
          text-decoration: none;
        }
        .article-card h3 {
          font-family: var(--font-heading);
          font-size: 1.35rem;
          margin: 0.5rem 0 0.65rem;
          color: var(--accent);
          line-height: 1.25;
        }
        .article-card p {
          margin: 0 0 1rem;
          font-size: 0.9375rem;
          color: var(--secondary);
          line-height: 1.6;
        }
        .card-read-more {
          font-size: 0.75rem;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: var(--accent);
        }

        /* ── Article Pages ── */
        .article-header {
          padding-top: calc(var(--nav-h) + 2.5rem);
          padding-bottom: 2rem;
          background: var(--bg);
        }
        .article-header .container {
          max-width: var(--max-editorial);
        }
        .breadcrumb {
          font-size: 0.75rem;
          letter-spacing: 0.06em;
          text-transform: uppercase;
          color: var(--muted);
          margin-bottom: 1.25rem;
        }
        .breadcrumb a { color: var(--muted); text-decoration: none; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
        .breadcrumb .current { color: var(--secondary); }
        .article-meta {
          display: flex;
          flex-wrap: wrap;
          gap: 0.5rem 1rem;
          font-size: 0.75rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: var(--muted);
          margin-bottom: 1.25rem;
        }
        .article-meta .category { color: var(--accent); }
        .article-header h1 {
          font-family: var(--font-heading);
          font-size: clamp(2rem, 4.5vw, 2.75rem);
          line-height: 1.12;
          color: var(--accent);
          margin: 0 0 1rem;
        }
        .article-intro {
          font-size: 1.125rem;
          font-style: italic;
          color: var(--secondary);
          line-height: 1.65;
          margin: 0;
        }
        .article-wrap {
          padding: 2.5rem 0 4rem;
        }
        .article-column {
          max-width: var(--max-editorial);
          margin: 0 auto;
          width: min(var(--max-editorial), calc(100% - 2.5rem));
        }
        .article-column h2 {
          font-family: var(--font-heading);
          font-size: 1.65rem;
          color: var(--accent);
          margin: 2.5rem 0 1rem;
        }
        .article-column p { margin: 0 0 1.25rem; }
        .article-column ul, .article-column ol {
          margin: 0 0 1.25rem;
          padding-left: 1.35rem;
        }
        .article-column li { margin-bottom: 0.45rem; }
        .drop-cap::first-letter {
          float: left;
          font-family: var(--font-heading);
          font-size: 4.2rem;
          line-height: 0.78;
          padding: 0.06em 0.12em 0 0;
          color: var(--accent);
          font-weight: 600;
        }
        .pull-quote {
          margin: 2rem 0;
          padding: 0.5rem 0 0.5rem 1.5rem;
          border-left: 3px solid var(--accent);
          font-family: var(--font-heading);
          font-style: italic;
          font-size: 1.25rem;
          line-height: 1.55;
          color: var(--secondary);
        }
        .pull-quote p { margin: 0; }
        .pull-quote cite {
          display: block;
          margin-top: 0.75rem;
          font-size: 0.75rem;
          font-style: normal;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: var(--muted);
        }
        .footnote-callout {
          margin: 2rem 0;
          padding: 1.25rem 1.5rem;
          background: var(--card-bg);
          border-left: 3px solid var(--secondary);
          font-size: 0.9375rem;
        }
        .footnote-callout strong {
          display: block;
          font-size: 0.6875rem;
          letter-spacing: 0.12em;
          text-transform: uppercase;
          color: var(--muted);
          margin-bottom: 0.5rem;
        }
        .footnote-callout p { margin: 0; }
        .article-image {
          margin: 2rem 0;
        }
        .article-image img {
          width: 100%;
          border-radius: 2px;
        }
        .article-image figcaption {
          font-size: 0.8125rem;
          color: var(--muted);
          margin-top: 0.65rem;
          font-style: italic;
        }

        /* ── FAQ ── */
        .faq-list { margin: 1.5rem 0 2rem; }
        .faq-section-title {
          font-family: var(--font-heading);
          font-size: 1.35rem;
          color: var(--accent);
          margin: 2rem 0 1rem;
        }
        .faq-item {
          border-bottom: 1px solid var(--border);
          padding: 0.25rem 0;
        }
        .faq-item summary {
          cursor: pointer;
          font-weight: 600;
          padding: 0.85rem 0;
          list-style: none;
          color: var(--text);
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-body { padding: 0 0 1rem; color: var(--secondary); }

        /* ── Legal ── */
        .legal-page {
          max-width: var(--max-editorial);
          margin: 0 auto;
          padding: calc(var(--nav-h) + 3rem) 0 4rem;
          width: min(var(--max-editorial), calc(100% - 2.5rem));
        }
        .legal-page h1 {
          font-family: var(--font-heading);
          font-size: 2.25rem;
          color: var(--accent);
        }
        .legal-page h2 {
          font-family: var(--font-heading);
          font-size: 1.35rem;
          margin-top: 2rem;
          color: var(--accent);
        }
        .legal-page h3 { font-size: 1.05rem; margin-top: 1.25rem; }
        .legal-meta { color: var(--muted); font-size: 0.875rem; }

        /* ── Related ── */
        .related-section {
          padding: 3rem 0 5rem;
          border-top: 1px solid var(--border);
        }
        .related-section h2 {
          font-family: var(--font-heading);
          font-size: 1.5rem;
          color: var(--accent);
          margin-bottom: 1.5rem;
        }
        .related-scroll {
          display: flex;
          gap: 1.25rem;
          overflow-x: auto;
          padding-bottom: 0.5rem;
          scroll-snap-type: x mandatory;
        }
        .related-card {
          flex: 0 0 min(300px, 80vw);
          scroll-snap-align: start;
          background: var(--card-bg);
          padding: 1.5rem;
          text-decoration: none;
          color: inherit;
          border: 1px solid var(--border);
        }
        .related-card:hover { border-color: var(--accent); text-decoration: none; }
        .related-card h3 {
          font-family: var(--font-heading);
          font-size: 1.15rem;
          margin: 0.5rem 0;
          color: var(--accent);
        }
        .related-card p {
          font-size: 0.875rem;
          color: var(--secondary);
          margin: 0;
          line-height: 1.55;
        }

        /* ── Footer ── */
        .site-footer {
          background: var(--bg);
          border-top: 1px solid var(--border);
          padding: 3rem 0 2rem;
        }
        .footer-grid {
          display: grid;
          grid-template-columns: 1.4fr 1fr 1fr 1fr;
          gap: 2rem;
          margin-bottom: 2.5rem;
        }
        .footer-brand p {
          font-size: 0.875rem;
          color: var(--muted);
          line-height: 1.65;
          margin: 0.75rem 0 0;
          max-width: 28rem;
        }
        .footer-col h4 {
          font-size: 0.6875rem;
          letter-spacing: 0.14em;
          text-transform: uppercase;
          color: var(--accent);
          margin: 0 0 1rem;
        }
        .footer-col ul {
          list-style: none;
          margin: 0;
          padding: 0;
        }
        .footer-col li { margin-bottom: 0.45rem; }
        .footer-col a {
          font-size: 0.875rem;
          color: var(--secondary);
          text-decoration: none;
        }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom {
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 1rem;
          padding-top: 1.5rem;
          border-top: 1px solid var(--border);
          font-size: 0.8125rem;
          color: var(--muted);
        }
        .footer-tagline { font-style: italic; }

        /* ── Cookie Banner ── */
        .cookie-banner {display: none; /* hidden by default, JS shows it */
  position: fixed;
          bottom: 0; left: 0; right: 0;
          background: var(--bg);
          border-top: 2px solid var(--accent);
          padding: 1.25rem 0;
          z-index: 2000;
          transform: translateY(100%);
          transition: transform 0.35s ease;
        }
        .cookie-banner.visible {display: flex;
  align-items: flex-start;
  transform: translateY(0); }
        .cookie-banner-inner {
          width: min(var(--container), calc(100% - 2.5rem));
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          gap: 1.25rem;
          align-items: center;
          justify-content: space-between;
        }
        .cookie-banner-text {
          flex: 1 1 420px;
          font-size: 0.875rem;
          color: var(--secondary);
          line-height: 1.6;
        }
        .cookie-banner-text p { margin: 0 0 0.5rem; }
        .cookie-banner-actions {
          display: flex;
          gap: 0.75rem;
          flex-shrink: 0;
        }
        .cookie-btn-accept, .cookie-btn-reject {
          font-family: var(--font-body);
          font-size: 0.75rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          padding: 0.65rem 1.25rem;
          cursor: pointer;
          border: 1px solid var(--accent);
        }
        .cookie-btn-accept {
          background: var(--accent);
          color: #fff;
        }
        .cookie-btn-reject {
          background: transparent;
          color: var(--accent);
        }

        #back-to-top {
          position: fixed;
          bottom: 5rem;
          right: 1.5rem;
          width: 42px;
          height: 42px;
          border: 1px solid var(--border);
          background: var(--card-bg);
          color: var(--accent);
          cursor: pointer;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s;
          z-index: 900;
        }
        #back-to-top.visible { opacity: 1; pointer-events: auto; }


.editorial-hero__title { font-style: italic; letter-spacing: -0.02em; }
.featured-editorial { border-radius: 2px; box-shadow: 0 18px 50px rgba(26,26,46,0.08); }
.article-card { border-left: 3px solid var(--accent); }
.pull-quote { font-family: var(--font-heading); font-style: italic; }


        @media (max-width: 900px) {
          .featured-editorial { grid-template-columns: 1fr; }
          .preview-grid { grid-template-columns: 1fr; }
          .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 720px) {
          .nav-links { display: none; }
          .nav-hamburger { display: block; }
          .footer-grid { grid-template-columns: 1fr; }
          .editorial-hero__image-wrap { aspect-ratio: 16/10; }
        }
