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

    :root {
      --bg:       #faf7f1;
      --bg-alt:   #f0ebe0;
      --white:    #ffffff;
      --text:     #1a1610;
      --muted:    #7a6b58;
      --cobalt:   #1c4ea0;
      --cobalt-dk:#143880;
      --cobalt-lt:#2d68c4;
      --terra:    #c5431f;
      --terra-lt: #d96040;
      --saffron:  #d48a0a;
      --emerald:  #2a6644;
      --rule:     rgba(28,78,160,0.15);

      /* Azulejo tile pattern (SVG data URI) */
      --tile-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='%231c4ea0'/%3E%3Cpolygon points='16,0 44,0 60,16 60,44 44,60 16,60 0,44 0,16' fill='%23ffffff' opacity='0.9'/%3E%3Cpolygon points='20,5 40,5 55,20 55,40 40,55 20,55 5,40 5,20' fill='%231c4ea0'/%3E%3Ccircle cx='30' cy='30' r='9' fill='%23c5431f'/%3E%3Ccircle cx='30' cy='30' r='5.5' fill='%23ffffff'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%231c4ea0'/%3E%3Cpolygon points='0,0 9,0 0,9' fill='%23d48a0a'/%3E%3Cpolygon points='60,0 51,0 60,9' fill='%23d48a0a'/%3E%3Cpolygon points='0,60 9,60 0,51' fill='%23d48a0a'/%3E%3Cpolygon points='60,60 51,60 60,51' fill='%23d48a0a'/%3E%3C/svg%3E");
    }

    html { scroll-behavior: smooth; font-size: 19px; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* ── TILE STRIP DIVIDER ── */
    .tile-strip {
      height: 60px;
      background-color: var(--cobalt);
      background-image: var(--tile-pattern);
      background-repeat: repeat-x;
      background-size: 60px 60px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 130svh;
      min-height: 620px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url("hero-bg.jpg");
      background-size: cover;
      background-position: 75% 10%;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(20,56,128,0.3)  0%,
        rgba(20,56,128,0.0)  30%,
        rgba(10,10,10,0.5)   70%,
        rgba(10,10,10,0.88)  100%
      );
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding: clamp(2rem, 6vw, 5rem);
      padding-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .hero__eyebrow {
      font-size: 1.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 1.25rem;
      font-weight: 900;
      order: 2;
      margin-top: 1rem;
    }

    .hero__title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(51px, 8.5vw, 112px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-top: 18rem;
      margin-bottom: 0;
      max-width: 900px;
      order: 1;
    }

    .hero__sub { order: 3; }

    .hero__title em {

      color: var(--saffron);
    }

    .hero__sub {
      font-size: 1.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      font-weight: 900;
    }

    /* ── NAV ── */
    .nav__right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 6vw, 5rem);
    }

    .nav__logo {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: clamp(1rem, 4vw, 2.1rem);
      letter-spacing: -0.03em;
      color: var(--saffron);
      text-decoration: none;
    }

    .nav__link {
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      font-weight: 900;
      background: var(--saffron);
      padding: 0.6rem 1.25rem;
      transition: background 0.2s, color 0.2s;
    }

    .nav__link:hover, .nav__link:active { background: #b8740a; color: #fff; text-decoration: none; }

    /* ── SECTION BASE ── */
    section { padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 6vw, 5rem); }

    .section__inner { max-width: 1160px; margin: 0 auto; }

    .section__label {
      font-size: 1.2rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--cobalt);
      font-weight: 900;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section__label::after {
      content: '';
      flex: 1;
      height: 9px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6'%3E%3Cpath d='M0 3 C2 0 6 0 8 3 C10 6 14 6 16 3' stroke='%231c4ea0' stroke-width='2' stroke-opacity='1' fill='none'/%3E%3C/svg%3E");
      background-repeat: repeat-x;
      background-position: center;
      background-size: 24px 9px;
      opacity: 1;
      max-width: 80px;
    }

    /* ── INTRO ── */
    .intro {
      background: var(--bg);
      position: relative;
    }

    /* Very subtle diamond grid background texture */
    .intro::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpolygon points='20,1 39,20 20,39 1,20' fill='none' stroke='%231c4ea0' stroke-width='0.6'/%3E%3C/svg%3E");
      background-size: 40px 40px;
      opacity: 0.045;
      pointer-events: none;
    }

    .intro__body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 7vw, 7rem);
      align-items: start;
      position: relative;
    }

    .intro__headline {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(38px, 5vw, 61px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .intro__headline em {

      color: var(--cobalt);
    }

    .intro__accent-line {
      width: 60px;
      height: 4px;
      background: var(--terra);
      margin: 1.5rem 0;
      border-radius: 2px;
    }

    .intro__text {
      font-family: 'Lora', serif;
      font-size: 1.02rem;
      font-weight: 400;
      color: #3a3020;
      line-height: 1.85;
    }

    .intro__text p + p { margin-top: 1.25rem; }

    .intro__dates {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 2px solid var(--cobalt);
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .date-block__label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
      font-weight: 900;
    }

    .date-block__date {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--cobalt);
    }

    /* ── PHOTO STRIP ── */
    .strip {
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 400px;
      gap: 4px;
      overflow: hidden;
    }

    .strip__cell { overflow: hidden; }
    .strip__cell img { transition: transform 0.65s ease; }
    .strip__cell:hover img { transform: scale(1.05); }

    /* ── QUOTE / EXPERIENCE ── */
    .experience {
      background: var(--cobalt);
      position: relative;
      overflow: hidden;
    }

    /* Tile pattern overlay on cobalt section */
    .experience::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--tile-pattern);
      background-size: 60px 60px;
      opacity: 0.06;
      pointer-events: none;
    }

    .experience__inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .experience__ornament {
      margin: 0 auto 2rem;
      width: 40px;
      height: 40px;
    }

    .experience__quote {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3.8vw, 2.9rem);
      line-height: 1.25;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .experience__quote em {

      color: var(--saffron);
    }

    .experience__sub {
      margin-top: 2rem;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 900;
    }

    /* ── SCHEDULE ── */
    .schedule { background: var(--bg-alt); position: relative; }

    .schedule__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 0.5rem;
    }

    .day {
      background: var(--white);
      border-top: 4px solid var(--cobalt);
      overflow: hidden;
    }

    .day:nth-child(2) { border-top-color: var(--terra); }
    .day:nth-child(3) { border-top-color: var(--saffron); }
    .day:nth-child(4) { border-top-color: var(--emerald); }

    .day__thumb {
      height: 160px;
      overflow: hidden;
    }

    .day__body { padding: 1.5rem; }

    .day__num {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 3rem;
      line-height: 1;
      color: var(--cobalt);
      margin-bottom: 0.5rem;
    }

    .day:nth-child(2) .day__num { color: var(--terra); }
    .day:nth-child(3) .day__num { color: var(--saffron); }
    .day:nth-child(4) .day__num { color: var(--emerald); }

    .day__tag {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.01em;
      color: var(--text);
      margin-bottom: 0.85rem;

    }

    .day__items {
      list-style: none;
      font-family: 'Lora', serif;
      font-size: 1rem;
      color: #4a4030;
      line-height: 1.8;
      font-weight: 400;
    }

    .day__items li { position: relative; padding-left: 1rem; }

    .day__items li::before {
      content: '';
      position: absolute;
      left: 0.1rem;
      top: 0.7em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cobalt);
      opacity: 0.5;
    }

    /* ── PHOTO GRID ── */
    .photo-grid {
      padding: 0;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 310px 310px;
      gap: 4px;
    }

    .photo-grid__cell { overflow: hidden; }
    .photo-grid__cell--tall { grid-row: span 2; }
    .photo-grid__cell img { transition: transform 0.65s ease; }
    .photo-grid__cell:hover img { transform: scale(1.05); }

    /* ── INSTRUCTORS ── */
    .instructors {
      background: var(--bg);
      position: relative;
    }

    .instructors::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpolygon points='20,1 39,20 20,39 1,20' fill='none' stroke='%231c4ea0' stroke-width='0.6'/%3E%3C/svg%3E");
      background-size: 40px 40px;
      opacity: 0.035;
      pointer-events: none;
    }

    .instructors__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2.5rem, 5vw, 5rem);
      margin-top: 3rem;
      position: relative;
    }

    .instructor {
      background: var(--white);
      border-left: 4px solid var(--cobalt);
      padding: 2rem;
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 1.5rem;
      align-items: start;
    }

    .instructor:last-child {
      border-left-color: var(--terra);
    }

    .instructor__photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--bg-alt);
      flex-shrink: 0;
    }

    .instructor__name {
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 0.25rem;
    }

    .instructor__role {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cobalt);
      font-weight: 900;
      margin-bottom: 0.85rem;
    }

    .instructor:last-child .instructor__role { color: var(--terra); }

    a.instructor__ig {
      display: inline-block;
      margin-top: 0.85rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--cobalt);
      text-decoration: none;
    }
    .instructor:last-child a.instructor__ig { color: var(--terra); }
    a.instructor__ig:hover { text-decoration: underline; }

    .instructor__bio {
      font-family: 'Lora', serif;
      font-size: 1rem;
      font-weight: 400;
      color: #4a4030;
      line-height: 1.8;
    }

    /* ── INCLUDED ── */
    .included { background: var(--white); }

    .included__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
      margin-top: 3rem;
    }

    .price-block {
      background: var(--cobalt);
      padding: clamp(2rem, 4vw, 3rem);
      position: relative;
      overflow: hidden;
    }

    /* Tile pattern on price block */
    .price-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--tile-pattern);
      background-size: 60px 60px;
      opacity: 0.07;
      pointer-events: none;
    }

    .price-block__content { position: relative; z-index: 1; }

    .price-block__amount {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(4rem, 8vw, 6rem);
      color: #ffffff;
      line-height: 1;
      margin-bottom: 0.15rem;
    }

    .price-block__label {
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 900;
      margin-bottom: 2rem;
    }

    .included__list {
      list-style: none;
      font-size: 1rem;
      color: rgba(255,255,255,0.88);
      line-height: 1;
    }

    .included__list li {
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: baseline;
      gap: 0.85rem;
    }

    .included__list li::before {
      content: '+';
      color: var(--saffron);
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .excluded__list {
      list-style: none;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.45);
      margin-top: 1.25rem;
    }

    .excluded__list li { padding: 0.4rem 0; display: flex; gap: 0.85rem; align-items: baseline; }
    .excluded__list li::before { content: '×'; color: rgba(255,255,255,0.3); flex-shrink: 0; }

    .dates-col { display: flex; flex-direction: column; gap: 0; }

    .dates-col__headline {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.0;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }

    .dates-col__headline em { color: var(--terra); }

    .dates-col__text {
      font-family: 'Lora', serif;
      font-size: 0.95rem;
      color: #4a4030;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .date-pill {
      border: 2px solid var(--cobalt);
      padding: 1.1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
      transition: background 0.2s;
      text-decoration: none;
    }

    .date-pill a, .date-pill a:hover, .date-pill a:active { text-decoration: none; }
    .date-pill:hover { background: var(--cobalt); }
    .date-pill:hover .date-pill__date,
    .date-pill:hover .date-pill__loc { color: #fff; text-decoration: none;}

    .date-pill__date {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--cobalt);
      text-decoration: none;
    }

    .date-pill__loc {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 900;
      text-decoration: none;
    }

    .contact-note {
      margin-top: 1.75rem;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-note a {
      color: var(--terra);
      text-decoration: none;
      font-weight: 900;

    }

    /* ── CTA ── */
    .cta-section {
      background: var(--terra);
      padding: clamp(5rem, 12vw, 9rem) clamp(2rem, 6vw, 5rem);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* Tile pattern overlay on CTA */
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='%23c5431f'/%3E%3Cpolygon points='16,0 44,0 60,16 60,44 44,60 16,60 0,44 0,16' fill='%23ffffff' opacity='0.07'/%3E%3Cpolygon points='20,5 40,5 55,20 55,40 40,55 20,55 5,40 5,20' fill='%23c5431f'/%3E%3Ccircle cx='30' cy='30' r='6' fill='%23ffffff' opacity='0.08'/%3E%3Cpolygon points='0,0 9,0 0,9' fill='%23d48a0a' opacity='0.5'/%3E%3Cpolygon points='60,0 51,0 60,9' fill='%23d48a0a' opacity='0.5'/%3E%3Cpolygon points='0,60 9,60 0,51' fill='%23d48a0a' opacity='0.5'/%3E%3Cpolygon points='60,60 51,60 60,51' fill='%23d48a0a' opacity='0.5'/%3E%3C/svg%3E");
      background-size: 60px 60px;
      pointer-events: none;
    }

    .cta-section__inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-section__eyebrow {
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      font-weight: 900;
      margin-bottom: 1.5rem;
    }

    .cta-section__title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }

    .cta-section__title em {

    }

    .cta-section__sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 2.5rem;
    }

    .btn {
      display: inline-block;
      padding: 1rem 2.75rem;
      font-size: 0.85rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 900;
      text-decoration: none;
      transition: all 0.22s;
      font-family: 'Inter', sans-serif;
    }

    .btn--white {
      background: #ffffff;
      color: var(--terra);
      border: 2px solid #ffffff;
    }

    .btn--white:hover {
      background: transparent;
      color: #ffffff;
    }

    .btn--outline-white {
      background: transparent;
      color: #ffffff;
      border: 2px solid rgba(255,255,255,0.6);
    }

    .btn--outline-white:hover {
      background: #ffffff;
      color: var(--cobalt);
    }

    /* ── GTRANSLATE ── */
    .gtranslate_wrapper {
      position: fixed;
      top: calc(clamp(1.5rem, 4vw, 2.5rem) + 0.6rem);
      right: clamp(2rem, 6vw, 5rem);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .gtranslate_wrapper a {
      display: inline-block !important;
      width: 24px !important;
      height: 18px !important;
      overflow: hidden !important;
      flex-shrink: 0 !important;
      margin-right: 8px !important;
    }
    .gtranslate_wrapper a:last-child {
      margin-right: 0 !important;
    }
    .gtranslate_wrapper a img {
      width: 24px !important;
      height: 18px !important;
      max-width: 24px !important;
      max-height: 18px !important;
      display: block !important;
      object-fit: cover !important;
      border: 1px solid rgba(255,255,255,0.8) !important;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--cobalt-dk);
      padding: 2.5rem clamp(2rem, 6vw, 5rem);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    footer span, footer a {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      letter-spacing: 0.05em;
    }

    footer a:hover { color: var(--saffron); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .intro__body,
      .instructors__grid,
      .included__grid { grid-template-columns: 1fr; }

      .schedule__grid { grid-template-columns: 1fr 1fr; }

      .strip {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 260px;
      }

      .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
      }
      .photo-grid__cell--tall { grid-row: span 1; }
    }

    @media (max-width: 600px) {
      .schedule__grid { grid-template-columns: 1fr; }
      .strip { grid-template-rows: 200px 200px; }
      footer { flex-direction: column; text-align: center; }
      .instructor { grid-template-columns: 1fr; }
      .instructor__photo { margin: 0 auto; }

      /* Hero mobile fixes */
      .hero__title { font-size: clamp(3rem, 14vw, 4rem); margin-top: 8rem; }
      .hero__content { padding: 0 0.625rem 2.5rem clamp(2rem, 6vw, 5rem); }
      .hero__eyebrow { white-space: nowrap; }
      .hero__sub { letter-spacing: 0.06em; font-size: 0.78rem; }

      /* Push subject to top so text at bottom doesn't overlap face */
      .hero__bg { background-position: center top; }
      .nav__link { display: none; }
      .nav__logo {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80vw;
      }
    }
