﻿:root {
      --primary: #C79A63;
      --primary-dark: #7A4F2A;
      --secondary: #2F3437;
      --accent: #E8D6BF;
      --background: #FFFCF7;
      --surface: #F6EFE6;
      --white: #FFFFFF;
      --text-primary: #2B2118;
      --text-secondary: #6E6258;
      --border: #E2D2C0;
      --shadow: 0 18px 50px rgba(47, 52, 55, 0.08);
      --shadow-soft: 0 8px 24px rgba(122, 79, 42, 0.16);
      --radius-sm: 8px;
      --radius-md: 18px;
      --radius-lg: 30px;
      --radius-pill: 999px;
      --container: 1180px;
      --font-heading: "Cormorant Garamond", Georgia, serif;
      --font-body: "Montserrat", Arial, sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-primary);
      background: var(--background);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .logo {
      display: block;
      max-width: 90px;
      height: auto;
    }
    
    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 110px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 38px;
      height: 1px;
      background: var(--primary);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1;
      color: var(--text-primary);
    }

    h1 {
      max-width: 760px;
      font-size: clamp(54px, 8vw, 92px);
      letter-spacing: -0.04em;
    }

    h2 {
      max-width: 720px;
      font-size: clamp(42px, 5vw, 68px);
      letter-spacing: -0.03em;
    }

    h3 {
      font-size: 30px;
      letter-spacing: -0.02em;
    }

    p {
      color: var(--text-secondary);
      font-size: 16px;
    }

    .lead {
      max-width: 620px;
      margin-top: 26px;
      font-size: 18px;
      line-height: 1.9;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 38px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 14px 30px;
      border: 1px solid transparent;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: #633f22;
      box-shadow: 0 16px 34px rgba(122, 79, 42, 0.22);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: rgba(255, 252, 247, 0.72);
      border-color: var(--primary);
    }

    .btn-secondary:hover {
      transform: translateY(-3px);
      background: var(--surface);
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      padding: 12px 0;
      background: rgba(255, 252, 247, 0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(226, 210, 192, 0.55);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .brand-mark {
      position: relative;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--primary);
      border-radius: 50%;
      background: linear-gradient(135deg, var(--white), var(--surface));
      color: var(--primary-dark);
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      top: 8px;
      right: 7px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-name {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-primary);
    }

    .brand-subtitle {
      color: var(--text-secondary);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--text-primary);
      font-size: 13px;
      font-weight: 600;
    }

    .nav-links a {
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 1px;
      background: var(--primary-dark);
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 11px 20px;
      font-size: 12px;
      min-height: 44px;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-dark);
    }

    .social-icon {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: var(--white);
      color: var(--primary-dark);
      transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .social-icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .social-icon:hover {
      color: var(--text-primary);
      border-color: var(--primary);
      background: var(--surface);
      transform: translateY(-2px);
    }

    .mobile-toggle {
      display: none;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: var(--white);
      color: var(--text-primary);
      cursor: pointer;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .mobile-toggle:hover {
      border-color: var(--primary);
      background: var(--surface);
    }

    .mobile-toggle-icon {
      display: grid;
      gap: 5px;
      width: 18px;
    }

    .mobile-toggle-icon span {
      display: block;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-header.menu-open .mobile-toggle-icon span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.menu-open .mobile-toggle-icon span:nth-child(2) {
      opacity: 0;
    }

    .site-header.menu-open .mobile-toggle-icon span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
    }

    .mobile-menu-inner {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding: 8px 0 24px;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-nav-links a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(226, 210, 192, 0.45);
      color: var(--text-primary);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .mobile-nav-links a:last-child {
      border-bottom: none;
    }

    .mobile-menu-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .mobile-menu-footer .nav-cta {
      flex: 1 1 100%;
      justify-content: center;
      text-align: center;
    }

    body.menu-open {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      padding: 170px 0 90px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 20%, rgba(199, 154, 99, 0.22), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(232, 214, 191, 0.65), transparent 34%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
      align-items: center;
      gap: 70px;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 640px;
      margin-top: 52px;
    }

    .stat-card {
      padding: 22px 18px;
      border: 1px solid rgba(226, 210, 192, 0.85);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.64);
      backdrop-filter: blur(10px);
    }

    .stat-number {
      display: block;
      margin-bottom: 4px;
      color: var(--primary-dark);
      font-family: var(--font-heading);
      font-size: 34px;
      font-weight: 700;
      line-height: 1;
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 12px;
      font-weight: 600;
      line-height: 1.5;
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .coffee-card {
      position: absolute;
      inset: 30px 0 auto auto;
      width: min(100%, 470px);
      min-height: 570px;
      padding: 26px;
      border: 1px solid rgba(226, 210, 192, 0.92);
      border-radius: 38px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 230, 0.86));
      box-shadow: var(--shadow);
    }

    .coffee-image {
      position: relative;
      height: 390px;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(140deg, rgba(47, 52, 55, 0.02), rgba(122, 79, 42, 0.25)),
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1100&q=85") center/cover;
    }

    .coffee-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(43, 33, 24, 0.62));
    }

    .floating-badge {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: var(--radius-pill);
      background: rgba(255, 252, 247, 0.86);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

    .coffee-card-content {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 4px 4px;
    }

    .coffee-card-content h3 {
      margin-bottom: 8px;
      font-size: 34px;
    }

    .coffee-card-content p {
      max-width: 280px;
      font-size: 14px;
    }

    .circle-note {
      position: absolute;
      left: -40px;
      bottom: 180px;
      display: grid;
      place-items: center;
      width: 148px;
      height: 148px;
      border: 1px solid rgba(199, 154, 99, 0.7);
      border-radius: 50%;
      background: var(--primary-dark);
      color: var(--white);
      box-shadow: 0 18px 50px rgba(122, 79, 42, 0.2);
      text-align: center;
      animation: float 5s ease-in-out infinite;
    }

    .circle-note span {
      width: 95px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      line-height: 1.65;
      text-transform: uppercase;
    }

    .hero-bean {
      position: absolute;
      right: 20px;
      bottom: 10px;
      width: 92px;
      height: 128px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      opacity: 0.16;
      transform: rotate(28deg);
    }

    .hero-bean::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 12%;
      width: 16px;
      height: 76%;
      border-radius: 50%;
      border-left: 2px solid rgba(255, 252, 247, 0.62);
      transform: translateX(-50%) rotate(8deg);
    }

    .logo-strip {
      padding: 28px 0;
      border-top: 1px solid rgba(226, 210, 192, 0.8);
      border-bottom: 1px solid rgba(226, 210, 192, 0.8);
      background: rgba(246, 239, 230, 0.45);
    }

    .strip-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 42px;
      color: var(--text-secondary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 76px;
      align-items: start;
    }

    .intro-copy {
      position: sticky;
      top: 130px;
    }

    .feature-list {
      display: grid;
      gap: 18px;
    }

    .feature-card {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 24px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: 0 12px 40px rgba(47, 52, 55, 0.04);
      transition: all 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .feature-icon {
      display: grid;
      place-items: center;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--surface);
      color: var(--primary-dark);
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
    }

    .feature-card h3 {
      margin-bottom: 10px;
    }

    .services {
      background: var(--secondary);
      color: var(--white);
      border-radius: 48px 48px 0 0;
    }

    .services .eyebrow,
    .services h2 {
      color: var(--white);
    }

    .services .eyebrow::before {
      background: var(--primary);
    }

    .services .lead {
      color: rgba(255, 255, 255, 0.72);
    }

    .services-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 54px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .service-card {
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
      transition: all 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      background: linear-gradient(180deg, rgba(199, 154, 99, 0.2), rgba(255, 255, 255, 0.055));
      border-color: rgba(199, 154, 99, 0.54);
    }

    .service-number {
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 48px;
      font-weight: 600;
    }

    .service-card h3 {
      color: var(--white);
      font-size: 28px;
      line-height: 1.1;
    }

    .service-card p {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 74px;
      align-items: center;
    }

    .experience-visual {
      position: relative;
    }

    .image-stack {
      position: relative;
      min-height: 620px;
    }

    .stack-image {
      position: absolute;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 34px;
      box-shadow: var(--shadow);
      background-size: cover;
      background-position: center;
    }

    .stack-image.large {
      inset: 0 auto auto 0;
      width: 78%;
      height: 500px;
      background-image: linear-gradient(180deg, rgba(43, 33, 24, 0.02), rgba(43, 33, 24, 0.24)), url("../images/img1.jpg");
    }

    .stack-image.small {
      right: 0;
      bottom: 0;
      width: 48%;
      height: 310px;
      background-image: linear-gradient(180deg, rgba(43, 33, 24, 0.02), rgba(43, 33, 24, 0.18)), url("../images/img2.jpg");
    }

    .experience-list {
      display: grid;
      gap: 18px;
      margin-top: 34px;
    }

    .experience-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }

    .check {
      display: grid;
      place-items: center;
      flex: 0 0 28px;
      width: 28px;
      height: 28px;
      margin-top: 3px;
      border-radius: 50%;
      background: var(--surface);
      color: var(--primary-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .experience-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text-primary);
      font-size: 15px;
    }

    .blind-date {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 20%, rgba(199, 154, 99, 0.16), transparent 28%),
        linear-gradient(135deg, var(--background), var(--surface));
    }

    .blind-date-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 74px;
      align-items: center;
    }

    .blind-date-card {
      position: relative;
      padding: 42px;
      border: 1px solid var(--border);
      border-radius: 38px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--shadow);
    }

    .initiative-label {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 28px;
      padding: 9px 14px;
      border-radius: var(--radius-pill);
      background: var(--surface);
      color: var(--primary-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .book-stack {
      position: relative;
      display: grid;
      min-height: 315px;
      place-items: center;
      margin-bottom: 32px;
    }

    .book-photo {
      position: relative;
      z-index: 2;
      width: min(100%, 430px);
      overflow: hidden;
      border: 1px solid rgba(122, 79, 42, 0.18);
      border-radius: 28px;
      box-shadow: 0 22px 54px rgba(122, 79, 42, 0.18);
    }

    .book-photo img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center;
    }

    .book-cover {
      position: relative;
      z-index: 2;
      display: flex;
      width: min(100%, 285px);
      min-height: 360px;
      flex-direction: column;
      justify-content: space-between;
      padding: 32px 28px;
      border: 1px solid rgba(122, 79, 42, 0.18);
      border-radius: 18px 28px 28px 18px;
      background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(232, 214, 191, 0.92)),
        repeating-linear-gradient(45deg, transparent 0 16px, rgba(199, 154, 99, 0.12) 16px 17px);
      box-shadow: 0 22px 54px rgba(122, 79, 42, 0.18);
    }

    .book-cover::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 22px;
      width: 1px;
      background: rgba(122, 79, 42, 0.18);
    }

    .book-cover h3 {
      max-width: 210px;
      color: var(--primary-dark);
      font-size: 38px;
      line-height: 0.95;
    }

    .book-cover p {
      color: var(--text-primary);
      font-size: 13px;
      font-weight: 600;
    }

    .book-shadow {
      position: absolute;
      width: 265px;
      height: 330px;
      border: 1px solid rgba(226, 210, 192, 0.85);
      border-radius: 18px 28px 28px 18px;
      background: var(--white);
      box-shadow: 0 18px 44px rgba(47, 52, 55, 0.08);
    }

    .book-shadow.one {
      transform: translate(28px, 22px) rotate(5deg);
    }

    .book-shadow.two {
      transform: translate(-25px, 34px) rotate(-7deg);
      background: var(--surface);
    }

    .blind-date-card > p {
      margin-bottom: 24px;
    }

    .blind-date-points {
      display: grid;
      gap: 14px;
      padding: 0;
      list-style: none;
    }

    .blind-date-points li {
      position: relative;
      padding-left: 30px;
      color: var(--text-secondary);
      font-size: 14px;
    }

    .blind-date-points li::before {
      content: "âœ¦";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--primary-dark);
    }

    .charity-list {
      display: grid;
      gap: 16px;
      margin-top: 32px;
    }

    .charity-item {
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.62);
    }

    .charity-link {
      display: block;
      margin-bottom: 6px;
      color: var(--text-primary);
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 700;
      line-height: 1.05;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .charity-link:hover {
      color: var(--primary-dark);
    }

    .packages {
      background: var(--surface);
    }

    .centered {
      max-width: 720px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .centered .eyebrow {
      justify-content: center;
    }

    .centered .eyebrow::before {
      display: none;
    }

    .centered h2,
    .centered .lead {
      margin-left: auto;
      margin-right: auto;
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .package-card {
      position: relative;
      display: flex;
      min-height: 520px;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 34px;
      background: var(--white);
      box-shadow: 0 14px 42px rgba(47, 52, 55, 0.05);
    }

    .package-card.featured {
      background: var(--text-primary);
      color: var(--white);
      transform: translateY(-18px);
      border-color: rgba(199, 154, 99, 0.6);
      box-shadow: 0 24px 70px rgba(43, 33, 24, 0.22);
    }

    .package-card.payg {
      grid-column: 1 / -1;
      min-height: auto;
      flex-direction: row;
      align-items: center;
      gap: 28px;
      background: rgba(255, 252, 247, 0.78);
    }

    .package-poster-card {
      min-height: auto;
      padding: 0;
      overflow: hidden;
    }

    .package-poster-card img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      object-position: top center;
    }

    .package-action {
      display: grid;
      gap: 14px;
      padding: 20px 24px 24px;
    }

    .package-action h4 {
      font-size: 24px;
      line-height: 1.05;
    }

    .package-action .btn {
      width: fit-content;
    }

    .package-card.featured h3,
    .package-card.featured .package-price,
    .package-card.featured .package-badge {
      color: var(--white);
    }

    .package-card.featured p,
    .package-card.featured li {
      color: rgba(255, 255, 255, 0.72);
    }

    .package-badge {
      display: inline-flex;
      width: fit-content;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: var(--surface);
      color: var(--primary-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .package-card.featured .package-badge {
      background: rgba(199, 154, 99, 0.2);
      color: var(--primary);
    }

    .package-card h3 {
      margin: 28px 0 14px;
      font-size: 36px;
    }

    .package-price {
      margin: 24px 0;
      color: var(--primary-dark);
      font-family: var(--font-heading);
      font-size: 46px;
      font-weight: 700;
    }

    .package-price span {
      font-family: var(--font-body);
      color: var(--text-secondary);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .package-card.featured .package-price span {
      color: rgba(255, 255, 255, 0.58);
    }

    .package-card ul {
      display: grid;
      gap: 13px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .package-card li {
      color: var(--text-secondary);
      font-size: 16px;
      text-align: left;
    }

    .package-card li::before {
      content: "*";
      margin-right: 10px;
      color: var(--primary);
    }

    .testimonial {
      position: relative;
      overflow: hidden;
      background: var(--background);
    }

    .quote-card {
      position: relative;
      padding: 72px;
      border: 1px solid var(--border);
      border-radius: 40px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 239, 230, 0.9)),
        radial-gradient(circle at 90% 20%, rgba(199, 154, 99, 0.22), transparent 28%);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .quote-mark {
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 120px;
      line-height: 0.6;
    }

    .quote-text {
      max-width: 880px;
      margin: 0 auto;
      color: var(--text-primary);
      font-family: var(--font-heading);
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .quote-author {
      margin-top: 28px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .booking {
      padding: 0 0 110px;
    }

    .booking-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      padding: 54px;
      border-radius: 42px;
      background: var(--secondary);
      color: var(--white);
      box-shadow: 0 24px 70px rgba(47, 52, 55, 0.18);
    }

    .booking-panel h2,
    .booking-panel .eyebrow {
      color: var(--white);
    }

    .booking-panel p {
      color: rgba(255, 255, 255, 0.72);
    }

    .booking-form {
      display: grid;
      gap: 16px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.07);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    label {
      color: rgba(255, 255, 255, 0.78);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 52px;
      padding: 14px 16px;
      border: 1px solid rgba(232, 214, 191, 0.28);
      border-radius: var(--radius-sm);
      outline: none;
      background: rgba(255, 252, 247, 0.96);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 14px;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(199, 154, 99, 0.14);
    }

    .booking-form .btn {
      width: 100%;
      margin-top: 6px;
    }

    .booking-form__notice {
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.45;
    }

    .booking-form__notice--success {
      background: rgba(199, 154, 99, 0.22);
      border: 1px solid rgba(199, 154, 99, 0.45);
      color: var(--white);
    }

    .booking-form__notice--error {
      background: rgba(180, 60, 50, 0.2);
      border: 1px solid rgba(220, 100, 90, 0.55);
      color: #ffe8e6;
    }

    .field.is-invalid input,
    .field.is-invalid select,
    .field.is-invalid textarea {
      border-color: #e88a82;
      box-shadow: 0 0 0 4px rgba(220, 100, 90, 0.2);
    }

    .field__error {
      margin: 0;
      font-size: 12px;
      font-weight: 600;
      color: #ffc9c4;
      letter-spacing: 0.02em;
      text-transform: none;
    }

    .field--hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    label .required {
      color: var(--primary);
    }

    .booking-form.is-submitting .btn-primary {
      opacity: 0.72;
      pointer-events: none;
    }

    .partners {
      padding: 0 0 96px;
      background: var(--background);
    }

    .partners-header {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .partners-header .lead {
      margin-top: 18px;
    }

    .partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
    }

    .partner-card {
      display: grid;
      gap: 12px;
      min-height: 150px;
      place-items: center;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: 0 12px 36px rgba(47, 52, 55, 0.045);
      transition: all 0.25s ease;
    }

    .partner-card:hover {
      transform: translateY(-4px);
      border-color: rgba(199, 154, 99, 0.66);
      box-shadow: var(--shadow);
    }

    .partner-card img {
      width: 100%;
      max-width: 200px;
      max-height: 96px;
      object-fit: contain;
    }

    .partner-card a {
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .partner-card a:hover {
      color: var(--primary-dark);
    }

    .site-footer {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      background: var(--background);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
    }

    .footer-social {
      display: inline-grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--primary-dark);
      background: var(--white);
      transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-social:hover {
      color: var(--text-primary);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .footer-note {
      color: var(--text-secondary);
      font-size: 13px;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-14px);
      }
    }

    @media (max-width: 1040px) {
      .hero-grid,
      .intro-grid,
      .experience-grid,
      .blind-date-grid,
      .booking-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 150px;
      }

      .hero-visual {
        min-height: 580px;
      }

      .coffee-card {
        left: 0;
        right: auto;
        margin: 0 auto;
      }

      .intro-copy {
        position: static;
      }

      .blind-date-card {
        max-width: 640px;
      }

      .services-header {
        display: block;
      }

      .services-grid,
      .package-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .partner-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .package-card.featured {
        transform: none;
      }
    }

    @media (max-width: 820px) {
      .site-header {
        padding: 12px 0 0;
      }

      .nav {
        padding-bottom: 12px;
      }

      .nav-links,
      .nav .social-links,
      .nav .nav-cta {
        display: none;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        border-top: 1px solid transparent;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease, border-color 0.25s ease;
      }

      .site-header.menu-open .mobile-menu {
        max-height: min(80vh, 520px);
        opacity: 1;
        visibility: visible;
        border-top-color: rgba(226, 210, 192, 0.55);
      }

      .section {
        padding: 78px 0;
      }

      .hero {
        min-height: auto;
        padding: 130px 0 70px;
      }

      .hero-grid {
        gap: 44px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: auto;
      }

      .coffee-card {
        position: relative;
        inset: auto;
        min-height: auto;
      }

      .coffee-image {
        height: 340px;
      }

      .circle-note {
        left: auto;
        right: -12px;
        bottom: -24px;
        width: 120px;
        height: 120px;
      }

      .circle-note span {
        width: 78px;
        font-size: 9px;
      }

      .strip-inner {
        gap: 22px;
      }

      .feature-card {
        grid-template-columns: 1fr;
      }

      .services {
        border-radius: 34px 34px 0 0;
      }

      .services-grid,
      .package-grid,
      .partner-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: 280px;
      }

      .image-stack {
        min-height: 510px;
      }

      .stack-image.large {
        width: 88%;
        height: 390px;
      }

      .stack-image.small {
        width: 58%;
        height: 250px;
      }

      .quote-card {
        padding: 48px 24px;
      }

      .package-card.payg {
        flex-direction: column;
        align-items: stretch;
      }

      .booking-panel {
        padding: 34px 22px;
        border-radius: 30px;
      }

      .book-cover {
        min-height: 330px;
      }

      .booking-form {
        padding: 22px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-name {
        font-size: 14px;
      }

      .brand-subtitle {
        font-size: 9px;
      }

      .btn-row {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .coffee-card {
        padding: 16px;
        border-radius: 28px;
      }

      .coffee-image {
        height: 280px;
        border-radius: 22px;
      }

      .coffee-card-content {
        display: block;
      }

      .image-stack {
        min-height: 420px;
      }

      .stack-image.large {
        height: 320px;
      }

      .stack-image.small {
        height: 205px;
      }

      .package-card {
        min-height: auto;
        padding: 28px;
      }

      .package-poster-card {
        padding: 0;
      }

      .package-poster-card .btn {
        width: auto;
      }

      .blind-date-card {
        padding: 28px;
        border-radius: 30px;
      }

      .book-cover {
        width: min(100%, 240px);
        min-height: 300px;
      }

      .book-cover h3 {
        font-size: 32px;
      }

      .book-shadow {
        width: 225px;
        height: 275px;
      }
    }

/* WordPress Full Site Editing — preserve original full-width layout */
:root {
  --primary: var(--wp--preset--color--primary, #C79A63);
  --primary-dark: var(--wp--preset--color--primary-dark, #7A4F2A);
  --secondary: var(--wp--preset--color--secondary, #2F3437);
  --accent: var(--wp--preset--color--accent, #E8D6BF);
  --background: var(--wp--preset--color--background, #FFFCF7);
  --surface: var(--wp--preset--color--surface, #F6EFE6);
  --white: var(--wp--preset--color--white, #FFFFFF);
  --text-primary: var(--wp--preset--color--text-primary, #2B2118);
  --text-secondary: var(--wp--preset--color--text-secondary, #6E6258);
  --border: var(--wp--preset--color--border, #E2D2C0);
}

.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-width: none;
}

.wp-block-group.alignfull,
.wp-block-group.qb-main,
.wp-block-html {
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

.wp-block-group.site-header,
.wp-block-group.site-footer {
  max-width: none;
  width: 100%;
}

/* Inner pages: offset fixed header */
.qb-main--page,
.qb-main--single,
.qb-main--blog {
  padding-top: 120px;
}

/* WordPress admin bar + fixed header */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .qb-main--page,
  body.admin-bar .qb-main--single,
  body.admin-bar .qb-main--blog {
    padding-top: 136px;
  }
}

/* Skip link */
.qb-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
}

.qb-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

/* Block editor / core block compatibility */
.wp-block-button__link {
  text-decoration: none;
}

.wp-block-post-content,
.wp-block-post-content p {
  color: var(--text-secondary);
}

.booking-form.is-submitted:not(.is-submitting) .btn-primary {
  opacity: 1;
}
