*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
          --cream: #f5f0e8;
          --cream-dark: #ede5d5;
          --warm-brown: #6b4f3a;
          --dark-brown: #3a2a1e;
          --forest-green: #3d5a3e;
          --forest-green-light: #4e7050;
          --text-body: #5a4535;
          --text-light: #8a7060;
          --section-divider: #c8b89a;
          --font-serif: 'Cormorant Garamond', Georgia, serif;
          --font-body: 'EB Garamond', Georgia, serif;
        }

        html { scroll-behavior: smooth; }
        body {
          font-family: var(--font-body);
          background: var(--cream);
          color: var(--text-body);
          overflow-x: hidden;
        }

        /* ====== PAGE ====== */
        .page {
          margin-top: 61px;
          padding: 56px 24px 80px;
          max-width: 720px;
          margin-left: auto;
          margin-right: auto;
        }

        @keyframes fadeUp {
          from { opacity: 0; transform: translateY(20px); }
          to   { opacity: 1; transform: translateY(0); }
        }

        /* ====== TITLE ====== */
        .title-block {
          text-align: center;
          margin-bottom: 48px;
          animation: fadeUp 0.9s ease both;
        }
        .title-block h1 {
          font-family: var(--font-serif);
          font-size: clamp(2rem, 5vw, 3.2rem);
          font-weight: 400; color: var(--dark-brown);
          letter-spacing: 0.03em; margin-bottom: 0.2em;
        }
        .title-block .update-date {
          font-family: var(--font-body); font-size: 0.88rem;
          color: var(--text-light); letter-spacing: 0.04em;
          margin-top: 10px;
        }

        /* Diamond divider */
        .divider-diamond {
          display: flex; align-items: center; justify-content: center;
          margin: 0 auto 48px;
        }
        .divider-diamond .line {
          flex: 1; height: 1px; background: var(--section-divider); max-width: 120px;
        }
        .divider-diamond .diamond {
          width: 8px; height: 8px; background: var(--section-divider);
          transform: rotate(45deg); margin: 0 12px; flex-shrink: 0;
        }

        /* ====== CONTENT ====== */
        .privacy-content {
          animation: fadeUp 0.9s ease 0.1s both;
        }

        /* Table of contents */
        .toc {
          background: var(--cream-dark);
          border-radius: 12px;
          padding: 24px 28px;
          margin-bottom: 48px;
          border-left: 3px solid var(--forest-green);
        }
        .toc-title {
          font-family: var(--font-serif); font-size: 1rem; font-weight: 500;
          color: var(--dark-brown); margin-bottom: 14px; letter-spacing: 0.03em;
        }
        .toc ol {
          list-style: none;
          display: flex; flex-direction: column; gap: 8px;
          counter-reset: toc-counter;
        }
        .toc ol li {
          counter-increment: toc-counter;
          display: flex; align-items: baseline; gap: 10px;
        }
        .toc ol li::before {
          content: counter(toc-counter) ".";
          font-family: var(--font-serif); font-size: 0.88rem;
          color: var(--text-light); flex-shrink: 0; min-width: 18px;
        }
        .toc ol li a {
          font-family: var(--font-body); font-size: 0.95rem;
          color: var(--forest-green); text-decoration: none;
          transition: color 0.2s;
          line-height: 1.4;
        }
        .toc ol li a:hover {
          color: var(--forest-green-light);
          text-decoration: underline; text-underline-offset: 3px;
        }

        /* Sections */
        .privacy-section {
          margin-bottom: 48px;
          padding-top: 8px;
        }
        .privacy-section:last-child { margin-bottom: 0; }

        .section-number {
          font-family: var(--font-body); font-size: 0.78rem;
          letter-spacing: 0.12em; text-transform: uppercase;
          color: var(--forest-green); margin-bottom: 8px;
        }
        .section-title {
          font-family: var(--font-serif);
          font-size: clamp(1.3rem, 2.5vw, 1.7rem);
          font-weight: 400; color: var(--dark-brown);
          letter-spacing: 0.02em; margin-bottom: 16px;
          line-height: 1.25;
        }

        .privacy-section p {
          font-family: var(--font-body);
          font-size: clamp(0.97rem, 1.5vw, 1.05rem);
          color: var(--text-body); line-height: 1.88;
          margin-bottom: 1em;
        }
        .privacy-section p:last-child { margin-bottom: 0; }
        .privacy-section strong { font-weight: 500; color: var(--dark-brown); }
        .privacy-section em { font-style: italic; }

        .privacy-section ul {
          list-style: none;
          margin: 12px 0 16px;
          display: flex; flex-direction: column; gap: 10px;
        }
        .privacy-section ul li {
          display: flex; align-items: flex-start; gap: 12px;
          font-family: var(--font-body);
          font-size: clamp(0.97rem, 1.5vw, 1.05rem);
          color: var(--text-body); line-height: 1.7;
        }
        .privacy-section ul li::before {
          content: '·'; color: var(--forest-green);
          font-size: 1.4rem; line-height: 1.2; flex-shrink: 0;
        }

        /* Section divider */
        .section-sep {
          height: 1px; background: var(--section-divider);
          margin-bottom: 48px; opacity: 0.6;
        }

        /* Contact highlight box */
        .contact-box {
          background: #fff;
          border-radius: 12px;
          padding: 24px 26px;
          box-shadow: 0 4px 20px rgba(58,42,30,0.07);
          margin-top: 16px;
        }
        .contact-box p {
          font-family: var(--font-body);
          font-size: 1rem; color: var(--text-body);
          line-height: 1.75; margin-bottom: 0.5em;
        }
        .contact-box p:last-child { margin-bottom: 0; }
        .contact-box a {
          color: var(--forest-green); text-decoration: none;
          transition: color 0.2s;
        }
        .contact-box a:hover {
          color: var(--forest-green-light);
          text-decoration: underline; text-underline-offset: 3px;
        }

        /* Back link */
        .back-link {
          display: inline-flex; align-items: center; gap: 8px;
          margin-top: 56px;
          font-family: var(--font-body); font-size: 0.95rem;
          color: var(--text-light); text-decoration: none;
          letter-spacing: 0.04em;
          transition: color 0.2s, gap 0.2s;
        }
        .back-link:hover { color: var(--forest-green); gap: 12px; }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 767px) {
          .nav-links { display: none; }
          .nav-hamburger { display: flex; }
          .page { padding: 40px 20px 64px; }
        }
        @media (min-width: 1024px) { nav { padding: 18px 48px; } }