/* =========================
   SS&TT Beauty
   Elite editorial stylesheet
   ========================= */

   *,
   *::before,
   *::after {
     box-sizing: border-box;
   }
   
   :root {
     --bg: #f7f4ef;
     --bg-soft: #f2eee8;
     --surface: #fbfaf8;
     --surface-2: #f5f1eb;
     --line: #ddd5cb;
     --line-strong: #cfc3b3;
     --text: #181512;
     --text-soft: #6f695f;
     --text-faint: #9d9488;
     --accent: #a88252;
     --accent-soft: #c8b08d;
     --white: #ffffff;
   
     --serif: "Cormorant Garamond", serif;
     --sans: "Inter", sans-serif;
   
     --container: 1320px;
     --radius: 20px;
     --shadow-soft: 0 20px 60px rgba(24, 21, 18, 0.05);
   }
   
   html {
     scroll-behavior: smooth;
     font-size: 16px;
   }
   
   body {
     margin: 0;
     background: var(--bg);
     color: var(--text);
     font-family: var(--sans);
     font-weight: 400;
     line-height: 1.7;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
     overflow-x: hidden;
   }
   
   img {
     max-width: 100%;
     display: block;
   }
   
   a {
     color: inherit;
   }
   
   section,
   footer,
   header {
     width: 100%;
   }
   
   /* HEADER */
   .site-header {
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(247, 244, 239, 0.92);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(207, 195, 179, 0.45);
   }
   
   .nav {
     max-width: var(--container);
     margin: 0 auto;
     height: 78px;
     padding: 0 32px;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   
   .brand {
     text-decoration: none;
     font-family: var(--serif);
     font-size: 1.2rem;
     font-weight: 600;
     letter-spacing: 0.04em;
   }
   
   .brand-mark {
     color: var(--accent);
   }
   
   .nav-links {
     display: flex;
     align-items: center;
     gap: 34px;
     list-style: none;
     margin: 0;
     padding: 0;
   }
   
   .nav-links a,
   .footer-links a {
     text-decoration: none;
     font-size: 0.68rem;
     text-transform: uppercase;
     letter-spacing: 0.22em;
     color: var(--text-soft);
     transition: color 0.25s ease;
   }
   
   .nav-links a:hover,
   .footer-links a:hover {
     color: var(--text);
   }
   
   .nav-cta {
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 42px;
     padding: 0 18px;
     border: 1px solid rgba(24, 21, 18, 0.12);
     color: var(--text);
     font-size: 0.67rem;
     text-transform: uppercase;
     letter-spacing: 0.18em;
     transition: all 0.28s ease;
   }
   
   .nav-cta:hover {
     background: var(--text);
     color: var(--white);
     border-color: var(--text);
   }
   
   /* HERO */
   .hero {
     padding: 96px 32px 80px;
     background:
       radial-gradient(circle at top right, rgba(168, 130, 82, 0.08), transparent 28%),
       linear-gradient(180deg, #faf7f2 0%, #f5f1eb 100%);
   }
   
   .hero-shell {
     max-width: var(--container);
     margin: 0 auto;
     min-height: calc(100vh - 160px);
     display: grid;
     grid-template-columns: 1.2fr 0.8fr;
     gap: 72px;
     align-items: center;
   }
   
   .hero-copy {
     max-width: 760px;
   }
   
   .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin: 0 0 22px;
     font-size: 0.66rem;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .eyebrow::before {
     content: "";
     width: 34px;
     height: 1px;
     background: var(--accent);
     opacity: 0.7;
   }
   
   .hero h1,
   .section-heading h2 {
     margin: 0;
     font-family: var(--serif);
     font-weight: 500;
     letter-spacing: -0.02em;
     line-height: 0.98;
     color: var(--text);
   }
   
   .hero h1 {
     font-size: clamp(3.5rem, 8vw, 6.4rem);
   }
   
   .hero h1 em,
   .section-heading h2 em {
     color: var(--accent);
     font-style: italic;
     font-weight: 500;
   }
   
   .hero-text {
     max-width: 470px;
     margin: 28px 0 0;
     font-size: 0.98rem;
     line-height: 1.95;
     color: var(--text-soft);
   }
   
   .hero-actions {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     margin-top: 34px;
   }
   
   .hero-aside {
     display: flex;
     justify-content: flex-end;
   }
   
   .hero-panel {
     width: min(100%, 420px);
     padding: 34px 34px 32px;
     background: rgba(255, 255, 255, 0.58);
     border: 1px solid rgba(207, 195, 179, 0.6);
     box-shadow: var(--shadow-soft);
   }
   
   .panel-label {
     margin: 0 0 14px;
     font-size: 0.64rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .panel-quote {
     margin: 0;
     font-family: var(--serif);
     font-size: 1.55rem;
     line-height: 1.32;
     color: var(--text);
   }
   
   .panel-rule {
     width: 42px;
     height: 1px;
     background: var(--accent);
     opacity: 0.5;
     margin: 26px 0;
   }
   
   .panel-points {
     margin: 0;
     padding: 0;
     list-style: none;
   }
   
   .panel-points li {
     position: relative;
     padding-left: 18px;
     margin-bottom: 10px;
     color: var(--text-soft);
     font-size: 0.9rem;
   }
   
   .panel-points li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0.82em;
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--accent-soft);
   }
   
   /* BUTTONS */
   .btn {
     min-height: 48px;
     padding: 0 22px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     font-size: 0.68rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     transition: all 0.28s ease;
   }
   
   .btn-dark {
     background: var(--text);
     color: var(--white);
     border: 1px solid var(--text);
   }
   
   .btn-dark:hover {
     background: transparent;
     color: var(--text);
   }
   
   .btn-light {
     background: transparent;
     color: var(--text);
     border: 1px solid rgba(24, 21, 18, 0.14);
   }
   
   .btn-light:hover {
     border-color: var(--accent);
     color: var(--accent);
   }
   
   .btn-full {
     width: 100%;
   }
   
   /* INTRO BAND */
   .intro-band {
     padding: 0 32px;
     background: var(--text);
   }
   
   .intro-band-inner {
     max-width: var(--container);
     margin: 0 auto;
     min-height: 72px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 18px;
     flex-wrap: wrap;
   }
   
   .intro-band-inner p {
     margin: 0;
     font-size: 0.68rem;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.75);
   }
   
   .intro-band-inner span {
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: var(--accent);
   }
   
   /* SECTION SCAFFOLD */
   .section {
     padding: 110px 32px;
   }
   
   .section-soft {
     background: var(--bg-soft);
   }
   
   .section-heading,
   .philosophy-grid,
   .products-head,
   .products-grid,
   .journal-list,
   .about-grid,
   .contact-grid,
   .statement-inner {
     max-width: var(--container);
     margin-left: auto;
     margin-right: auto;
   }
   
   .section-heading h2 {
     font-size: clamp(2.3rem, 4.8vw, 4.2rem);
   }
   
   .philosophy-grid,
   .about-grid,
   .contact-grid {
     display: grid;
     gap: 72px;
     margin-top: 46px;
   }
   
   .philosophy-grid {
     grid-template-columns: 1.15fr 0.85fr;
   }
   
   .about-grid,
   .contact-grid {
     grid-template-columns: 1fr 1fr;
   }
   
   .body-copy p {
     margin: 0 0 22px;
     max-width: 760px;
     font-size: 0.98rem;
     line-height: 2;
     color: var(--text-soft);
   }
   
   .body-copy blockquote {
     margin: 0 0 26px;
     padding-left: 20px;
     border-left: 1px solid rgba(168, 130, 82, 0.5);
     font-family: var(--serif);
     font-size: 1.6rem;
     line-height: 1.45;
     color: var(--text);
   }
   
   /* PHILOSOPHY NOTE */
   .philosophy-note {
     padding-top: 10px;
   }
   
   .note-kicker {
     margin: 0 0 20px;
     font-size: 0.68rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .note-statements {
     border-top: 1px solid var(--line);
   }
   
   .note-item {
     display: grid;
     grid-template-columns: 44px 1fr;
     gap: 16px;
     padding: 20px 0;
     border-bottom: 1px solid var(--line);
   }
   
   .note-item span,
   .pillar-no {
     font-family: var(--serif);
     font-size: 1.35rem;
     color: rgba(168, 130, 82, 0.7);
   }
   
   .note-item p {
     margin: 0;
     color: var(--text);
     font-size: 1rem;
     line-height: 1.7;
   }
   
   /* PILLARS */
   .pillars {
     max-width: var(--container);
     margin: 46px auto 0;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 34px;
   }
   
   .pillar {
     padding-top: 20px;
     border-top: 1px solid var(--line-strong);
   }
   
   .pillar h3 {
     margin: 14px 0 12px;
     font-family: var(--serif);
     font-size: 1.6rem;
     font-weight: 500;
   }
   
   .pillar p {
     margin: 0;
     font-size: 0.95rem;
     line-height: 1.95;
     color: var(--text-soft);
   }
   
   /* STATEMENT */
   .statement {
     padding: 28px 32px 0;
     background: var(--bg-soft);
   }
   
   .statement-inner {
     padding: 42px 0 16px;
     border-top: 1px solid var(--line-strong);
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
   }
   
   .statement-text {
     max-width: 720px;
     margin: 0;
     font-family: var(--serif);
     font-size: 1.9rem;
     line-height: 1.42;
     color: var(--text);
   }
   
   .statement-tags {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
   }
   
   .statement-tags span {
     display: inline-flex;
     align-items: center;
     min-height: 34px;
     padding: 0 12px;
     border: 1px solid rgba(168, 130, 82, 0.22);
     font-size: 0.62rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--text-soft);
   }
   
   /* PRODUCTS */
   .products-head {
     display: flex;
     align-items: end;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
   }
   
   .products-note {
     max-width: 370px;
     margin: 0;
     font-size: 0.95rem;
     line-height: 1.95;
     color: var(--text-soft);
   }
   
   .products-grid {
     margin-top: 46px;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 26px;
   }
   
   .product-card {
     background: rgba(255, 255, 255, 0.56);
     border: 1px solid rgba(207, 195, 179, 0.7);
     transition: transform 0.25s ease, border-color 0.25s ease;
   }
   
   .product-card:hover {
     transform: translateY(-4px);
     border-color: rgba(168, 130, 82, 0.35);
   }
   
   .product-visual {
     height: 340px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-bottom: 1px solid rgba(207, 195, 179, 0.65);
   }
   
   .product-visual-1 {
     background: linear-gradient(180deg, #f7f2ea 0%, #efe8dc 100%);
   }
   
   .product-visual-2 {
     background: linear-gradient(180deg, #f4f0ea 0%, #ece4d8 100%);
   }
   
   .product-visual-3 {
     background: linear-gradient(180deg, #f1f3ef 0%, #e5e9e2 100%);
   }
   
   .product-visual span {
     font-family: var(--serif);
     font-size: 5.4rem;
     color: rgba(168, 130, 82, 0.18);
     font-style: italic;
   }
   
   .product-body {
     padding: 26px 24px 28px;
   }
   
   .product-type {
     margin: 0 0 8px;
     font-size: 0.64rem;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .product-body h3 {
     margin: 0 0 10px;
     font-family: var(--serif);
     font-size: 1.45rem;
     font-weight: 500;
   }
   
   .product-body p {
     margin: 0;
     font-size: 0.92rem;
     line-height: 1.9;
     color: var(--text-soft);
   }
   
   .product-tag {
     display: inline-flex;
     margin-top: 18px;
     min-height: 32px;
     align-items: center;
     padding: 0 12px;
     border: 1px solid rgba(168, 130, 82, 0.2);
     font-size: 0.6rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   /* JOURNAL */
   .journal-list {
     margin-top: 46px;
     border-top: 1px solid var(--line);
   }
   
   .journal-item {
     display: grid;
     grid-template-columns: 180px 1fr 1.1fr 140px;
     gap: 26px;
     align-items: start;
     padding: 28px 0;
     border-bottom: 1px solid var(--line);
   }
   
   .journal-meta {
     margin: 0;
     font-size: 0.64rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .journal-item h3 {
     margin: 0;
     font-family: var(--serif);
     font-size: 1.45rem;
     font-weight: 500;
     line-height: 1.25;
   }
   
   .journal-item p:not(.journal-meta) {
     margin: 0;
     color: var(--text-soft);
     font-size: 0.95rem;
     line-height: 1.9;
   }
   
   .journal-item a {
     text-decoration: none;
     font-size: 0.68rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--text);
     justify-self: end;
     align-self: center;
   }
   
   .journal-item a:hover {
     color: var(--accent);
   }
   
   /* ABOUT */
   .about-card {
     padding: 34px;
     background: rgba(255, 255, 255, 0.52);
     border: 1px solid rgba(207, 195, 179, 0.68);
     box-shadow: var(--shadow-soft);
   }
   
   .about-card-label {
     margin: 0 0 14px;
     font-size: 0.66rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .about-card-quote {
     margin: 0;
     font-family: var(--serif);
     font-size: 1.6rem;
     line-height: 1.42;
     color: var(--text);
   }
   
   .about-card-rule {
     width: 44px;
     height: 1px;
     margin: 24px 0;
     background: var(--accent);
     opacity: 0.5;
   }
   
   .about-points {
     margin: 0;
     padding: 0;
     list-style: none;
   }
   
   .about-points li {
     position: relative;
     padding-left: 18px;
     margin-bottom: 12px;
     color: var(--text-soft);
     font-size: 0.94rem;
   }
   
   .about-points li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0.82em;
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--accent-soft);
   }
   
   /* CONTACT */
   .contact-info {
     display: grid;
     gap: 26px;
   }
   
   .contact-block {
     padding-bottom: 18px;
     border-bottom: 1px solid var(--line);
   }
   
   .contact-label {
     margin: 0 0 8px;
     font-size: 0.66rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   
   .contact-value {
     margin: 0 0 4px;
     font-size: 1.02rem;
     color: var(--text);
   }
   
   .contact-sub {
     margin: 0;
     color: var(--text-soft);
     font-size: 0.92rem;
   }
   
   .contact-card {
     padding: 34px;
     background: rgba(255, 255, 255, 0.6);
     border: 1px solid rgba(207, 195, 179, 0.72);
     box-shadow: var(--shadow-soft);
   }
   
   .contact-card h3 {
     margin: 0 0 10px;
     font-family: var(--serif);
     font-size: 1.85rem;
     font-weight: 500;
   }
   
   .contact-card > p {
     margin: 0 0 24px;
     font-size: 0.95rem;
     line-height: 1.9;
     color: var(--text-soft);
   }
   
   .field {
     margin-bottom: 18px;
   }
   
   .field input {
     width: 100%;
     height: 52px;
     padding: 0 0 0 2px;
     background: transparent;
     border: none;
     border-bottom: 1px solid var(--line-strong);
     outline: none;
     font-family: var(--sans);
     font-size: 0.95rem;
     color: var(--text);
     transition: border-color 0.25s ease;
   }
   
   .field input::placeholder {
     color: var(--text-faint);
   }
   
   .field input:focus {
     border-bottom-color: var(--accent);
   }
   
   /* FOOTER */
   .footer {
     padding: 42px 32px 30px;
     background: #161310;
     color: rgba(255, 255, 255, 0.86);
   }
   
   .footer-top,
   .footer-bottom {
     max-width: var(--container);
     margin: 0 auto;
   }
   
   .footer-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 22px;
     flex-wrap: wrap;
   }
   
   .footer-brand {
     color: var(--white);
   }
   
   .footer-links {
     display: flex;
     flex-wrap: wrap;
     gap: 24px;
     list-style: none;
     margin: 0;
     padding: 0;
   }
   
   .footer-links a {
     color: rgba(255, 255, 255, 0.64);
   }
   
   .footer-bottom {
     margin-top: 26px;
     padding-top: 18px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     display: flex;
     justify-content: space-between;
     gap: 14px;
     flex-wrap: wrap;
   }
   
   .footer-bottom p {
     margin: 0;
     font-size: 0.7rem;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.36);
   }
   
   /* REVEAL */
   .reveal {
     opacity: 0;
     transform: translateY(18px);
     transition: opacity 0.8s ease, transform 0.8s ease;
   }
   
   .reveal.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* RESPONSIVE */
   @media (max-width: 1120px) {
     .hero-shell,
     .philosophy-grid,
     .about-grid,
     .contact-grid,
     .products-grid,
     .pillars {
       grid-template-columns: 1fr;
     }
   
     .hero-shell {
       min-height: auto;
       gap: 42px;
     }
   
     .hero-aside {
       justify-content: flex-start;
     }
   
     .journal-item {
       grid-template-columns: 1fr;
       gap: 12px;
     }
   
     .journal-item a {
       justify-self: start;
     }
   }
   
   @media (max-width: 860px) {
     .nav {
       height: auto;
       padding-top: 18px;
       padding-bottom: 18px;
       flex-wrap: wrap;
       gap: 16px;
     }
   
     .nav-links {
       width: 100%;
       order: 3;
       gap: 18px;
       flex-wrap: wrap;
     }
   
     .section,
     .hero,
     .footer {
       padding-left: 22px;
       padding-right: 22px;
     }
   
     .hero {
       padding-top: 72px;
     }
   
     .hero h1 {
       line-height: 1.02;
     }
   
     .statement-text {
       font-size: 1.5rem;
     }
   
     .product-visual {
       height: 280px;
     }
   }
   
   @media (max-width: 560px) {
     html {
       font-size: 15px;
     }
   
     .hero-actions {
       flex-direction: column;
       align-items: stretch;
     }
   
     .btn,
     .nav-cta {
       width: 100%;
     }
   
     .intro-band-inner {
       gap: 10px;
     }
   
     .intro-band-inner span {
       display: none;
     }
   
     .section-heading h2 {
       line-height: 1.04;
     }
   
     .about-card,
     .contact-card,
     .hero-panel {
       padding: 26px;
     }
   }