/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 486:0 Unexpected "<"

**/
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --black: #0A0A0A;
    --off-black: #111111;
    --dark-gray: #222222;
    --mid-gray: #555555;
    --light-gray: #999999;
    --border: #E2E2E2;
    --off-white: #F8F8F8;
    --white: #FFFFFF;
  }
 
  html { scroll-behavior: smooth; }
 
  body {
    background: var(--white);
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
  }
 
  /* ── NAV ── */
  nav {
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }
 
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--black);
  }
 
  .nav-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light-gray);
  }
 
  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 73px);
  }
 
  .hero-left {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
  }
 
  .eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
  }
 
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
 
  h1 em {
    font-style: italic;
    font-weight: 400;
  }
 
  .hero-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--mid-gray);
    max-width: 420px;
    margin-bottom: 48px;
    line-height: 1.75;
    animation: fadeUp 0.6s 0.2s ease both;
  }
 
  /* ── FORM ── */
  .form-wrap { animation: fadeUp 0.6s 0.3s ease both; }
 
  .form-label-top {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
 
  .field { margin-bottom: 16px; }
 
  .field label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 7px;
  }
 
  input[type="text"],
  input[type="email"] {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
  }
 
  input::placeholder { color: #ccc; }
  input:focus { border-bottom-color: var(--black); }
 
  .btn-main {
    width: 100%;
    padding: 15px 24px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.2s, transform 0.15s;
  }
 
  .btn-main:hover { background: var(--dark-gray); transform: translateY(-1px); }
 
  .privacy {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--light-gray);
    margin-top: 12px;
  }
 
  .success-msg {
    display: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--black);
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid var(--black);
  }
 
  /* ── HERO RIGHT (PHOTO) ── */
  .hero-right {
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s 0.3s ease both;
  }
 
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    padding: 40px 36px 32px;
  }
 
  .photo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.92);
    padding: 8px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 10px;
  }
 
  .photo-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.3;
  }
 
  /* ── STATS ── */
  .stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
 
  .stat {
    padding: 40px 44px;
    border-right: 1px solid var(--border);
  }
 
  .stat:last-child { border-right: none; }
 
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    margin-bottom: 6px;
  }
 
  .stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--light-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
 
  /* ── FEATURES ── */
  .features { padding: 100px 80px; }
 
  .section-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 64px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
 
  .section-num {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #ebebeb;
    line-height: 1;
    user-select: none;
  }
 
  .section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
  }
 
  .section-head h2 em { font-style: italic; }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
  }
 
  .feature-card {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
 
  .feature-card:hover { background: var(--off-white); }
  .feature-card:nth-child(3n) { border-right: none; }
  .feature-card:nth-last-child(-n+3) { border-bottom: none; }
 
  .feature-index {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--light-gray);
    margin-bottom: 16px;
  }
 
  .feature-icon { font-size: 26px; margin-bottom: 16px; }
 
  .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }
 
  .feature-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--mid-gray);
    line-height: 1.75;
  }
 
  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--black);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
 
  .cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
  }
 
  .cta-left h2 em { font-style: italic; }
 
  .cta-left p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #888;
    line-height: 1.7;
  }
 
  .cta-field { margin-bottom: 14px; }
 
  .cta-field label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 7px;
  }
 
  .cta-field input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
  }
 
  .cta-field input::placeholder { color: #333; }
  .cta-field input:focus { border-bottom-color: var(--white); }
 
  .btn-white {
    width: 100%;
    padding: 15px 24px;
    background: var(--white);
    color: var(--black);
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.2s;
  }
 
  .btn-white:hover { background: var(--off-white); }
 
  .cta-privacy {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #444;
    margin-top: 12px;
  }
 
  /* ── FOOTER ── */
  footer {
    padding: 28px 80px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
  }
 
  .footer-links { display: flex; gap: 28px; }
 
  .footer-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.2s;
  }
 
  .footer-links a:hover { color: var(--black); }
 
  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .hero-right { min-height: 320px; }
    .stats { grid-template-columns: 1fr 1fr 1fr; }
    .features { padding: 60px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none !important; }
    .feature-card:last-child { border-bottom: none; }
    .cta-final { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    footer { flex-direction: column; gap: 20px; padding: 28px 24px; }
  }
</style>
