/* ===================================================
   ASEAN LINKS — SHARED STYLES
   =================================================== */

:root {
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.85rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  --radius-sm: 0.2rem; --radius-md: 0.5rem;
  --radius-lg: 0.85rem; --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 700px;
  --content-default: 1120px;

  --bg:          #0b0f07;
  --surface:     #0f1409;
  --surface-2:   #141a0c;
  --surface-off: #1a2210;
  --border:      #283215;
  --divider:     #1f2812;

  --text:        #eae6d6;
  --text-muted:  #a09a86;
  --text-faint:  #55503e;

  --gold:        #C9A84C;
  --gold-light:  #e0c572;
  --gold-dim:    #7a6229;
  --gold-bg:     #2b2212;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.45);
  --shadow-md:  0 4px 18px rgba(0,0,0,0.55);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.65);

  /* Text shadow for readability over photos */
  --text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.7);
  --text-shadow-heavy: 0 2px 20px rgba(0,0,0,0.95), 0 1px 6px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.7);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body { font-family: var(--font-body); font-size: var(--text-base); color: var(--text); background: var(--bg); line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.08; text-wrap: balance; }
h1 { font-size: var(--text-3xl); font-weight: 600; }
h2 { font-size: var(--text-2xl); font-weight: 600; }
h3 { font-size: var(--text-xl);  font-weight: 500; }
h4 { font-size: var(--text-lg);  font-weight: 500; }
em { font-style: italic; color: var(--gold); }
p  { max-width: 68ch; }
ul { list-style: none; }
input, select, textarea {
  font: inherit; color: var(--text);
  background: var(--surface-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent);
}
textarea { resize: vertical; }
select  { appearance: none; cursor: pointer; }

/* ---- LAYOUT ---- */
.container        { max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--content-narrow); }
.section          { padding-block: clamp(var(--space-16), 9vw, var(--space-24)); border-top: 1px solid var(--divider); }

/* ---- TYPE ---- */
.eyebrow {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-3);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-12); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-desc { color: var(--text-muted); font-size: var(--text-base); max-width: 54ch; margin: 0 auto; line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--gold); color: #0b0f07;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.06em;
  padding: var(--space-3) var(--space-8); border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-size: var(--text-sm); font-weight: 500; color: #f0ece0;
  border: 1px solid rgba(240,236,224,0.45);
  padding: var(--space-3) var(--space-8); border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  display: inline-flex; font-size: var(--text-sm); font-weight: 500;
  color: var(--gold); border: 1px solid var(--gold-dim);
  padding: var(--space-2) var(--space-6); border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.btn-outline:hover { background: var(--gold-bg); }
.btn-nav {
  font-size: var(--text-sm); font-weight: 600; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-sm); letter-spacing: 0.04em;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--gold-bg); }
.btn-full { width: 100%; justify-content: center; }
.link-arrow { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; color: var(--gold); transition: opacity var(--transition); }
.link-arrow:hover { opacity: 0.7; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled { border-color: var(--divider); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6);
  height: 58px; display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
}
/* Nav logo: transparent PNG — no background needed */
.nav-logo {
  height: 60px; width: auto; object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-links a:not(.btn-nav) { font-size: var(--text-sm); color: var(--text-muted); letter-spacing: 0.04em; transition: color var(--transition); }
.nav-links a:not(.btn-nav):hover { color: var(--text); }
.nav-apparel { color: var(--gold) !important; font-weight: 500; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform var(--transition), opacity var(--transition); }
.nav-mobile { display: none; flex-direction: column; padding: var(--space-4) var(--space-6) var(--space-6); border-top: 1px solid var(--divider); gap: var(--space-4); }
.nav-mobile.open { display: flex; }
.mobile-link { font-size: var(--text-base); color: var(--text-muted); padding: var(--space-2) 0; border-bottom: 1px solid var(--divider); }
.mobile-link.cta { color: var(--gold); font-weight: 600; border: 1px solid var(--gold-dim); text-align: center; padding: var(--space-3); border-radius: var(--radius-sm); margin-top: var(--space-2); }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  padding-top: clamp(var(--space-16), 10vw, var(--space-24));
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
/* Stronger overlay for text legibility */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,3,0.35) 0%,
    rgba(5,8,3,0.08) 28%,
    rgba(5,8,3,0.55) 58%,
    rgba(5,8,3,0.92) 82%,
    rgba(5,8,3,0.98) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--content-default); margin: 0 auto;
  padding: 0 var(--space-6); width: 100%;
}

/* GOLF · EXPLORE · ASIA — large prominent tagline */
.hero-tagline-banner {
  display: flex; align-items: center; gap: clamp(var(--space-4), 2vw, var(--space-8));
  margin-bottom: clamp(var(--space-6), 3vw, var(--space-10));
  flex-wrap: wrap;
}
.hero-tagline-banner span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.8rem + 2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-shadow: var(--text-shadow-heavy);
  line-height: 1;
}
.tagline-dot {
  color: rgba(201,168,76,0.55) !important;
  font-size: clamp(1.2rem, 1.5vw, 2rem) !important;
  letter-spacing: 0 !important;
}

/* Smaller tagline variant — between sub text and CTAs */
.hero-tagline-small {
  margin-top: var(--space-2);
  margin-bottom: var(--space-8);
}
.hero-tagline-small span {
  font-size: clamp(0.72rem, 0.5rem + 0.9vw, 1.1rem) !important;
  letter-spacing: 0.32em !important;
  color: color-mix(in srgb, var(--gold) 70%, transparent) !important;
}
.hero-tagline-small .tagline-dot {
  font-size: clamp(0.6rem, 0.8vw, 0.9rem) !important;
}

.hero-heading {
  font-size: clamp(3.2rem, 1.5rem + 6vw, 7.5rem);
  font-weight: 600; line-height: 1.0;
  color: #f5f1e4;
  text-shadow: var(--text-shadow-heavy);
  margin-bottom: var(--space-6); max-width: none;
}
.hero-heading em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: var(--text-base); line-height: 1.8;
  color: rgba(235,230,215,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  max-width: 52ch; margin-bottom: var(--space-6);
  font-weight: 400;
}
.hero-ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: var(--space-8); right: var(--space-8); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.scroll-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,168,76,0.7); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.35} 50%{opacity:1} }

/* ---- DEST STRIP ---- */
.dest-strip { background: var(--surface); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: var(--space-4) 0; }
.dest-strip-inner {
  max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6);
  display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap;
}
.dest-strip-inner span { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.dest-strip-inner .sep { color: var(--gold); }

/* ---- DESTINATIONS ---- */
.destination-block {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: start;
  margin-bottom: var(--space-16);
}
.destination-block-reverse { grid-template-columns: 1.5fr 1fr; direction: rtl; }
.destination-block-reverse > * { direction: ltr; }
.dest-label-col { padding-top: var(--space-6); }
.dest-label { display: flex; flex-direction: column; gap: var(--space-5); }
.dest-label h3 { font-size: var(--text-2xl); }
.dest-label p { color: var(--text-muted); line-height: 1.78; }
.dest-features {
  display: flex; flex-direction: column; gap: var(--space-2);
  border-left: 2px solid var(--gold-dim); padding-left: var(--space-5); margin-top: var(--space-2);
}
.dest-features li { font-size: var(--text-sm); color: var(--text-muted); }
.dest-features li.and-more { color: var(--gold); font-style: italic; font-weight: 500; }

/* Gallery: 3-image asymmetric for Vietnam */
.dest-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: var(--space-3);
  border-radius: var(--radius-lg); overflow: hidden;
}
/* 2-col layout for Cambodia (2 images) */
.dest-gallery-2col {
  grid-template-rows: 320px 200px;
}

/* Vietnam — 6-image mosaic: big top, 2+2+2 below */
.dest-gallery-vn {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px 180px;
  gap: var(--space-3);
}
.vn-img-1 { grid-column: 1 / -1; } /* full-width top */
.vn-img-2 { grid-column: 1; grid-row: 2; object-position: center 25%; }
.vn-img-3 { grid-column: 2; grid-row: 2; }
.vn-img-4 { grid-column: 1; grid-row: 3; }
.vn-img-5 { grid-column: 2; grid-row: 3; }
.vn-img-6 { display: none; } /* 6th hidden on default — shown on wider */

/* Show all 6 on wider screens */
@media (min-width: 769px) {
  .dest-gallery-vn {
    grid-template-rows: 240px 180px 180px;
  }
  .vn-img-6 { display: block; grid-column: 1 / -1; grid-row: 4; height: 160px; }
  .dest-gallery-vn { grid-template-rows: 240px 180px 180px 160px; }
}

/* Thailand — 4-image: course top, then 3 smaller side-by-side */
.dest-gallery-th {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: var(--space-3);
}
.th-img-1 { grid-column: 1 / -1; } /* course full width */
.th-img-2 { object-position: center top; }
.th-img-3 { object-position: center center; }
.th-img-4 { object-position: center 30%; }
.dest-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-img-main { grid-column: 1 / -1; } /* spans both columns for top image */
.dest-img-span { grid-column: 1 / -1; } /* spans full width for bottom */

.dest-divider { height: 1px; background: var(--divider); margin-bottom: var(--space-16); }

/* ---- FACILITY ---- */
.facility-strip { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--space-8); height: 380px; }
.facility-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.facility-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,8,3,0.92) 35%, rgba(5,8,3,0.15) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-12) var(--space-12); gap: var(--space-3);
}
.facility-overlay h3 { color: #f0ece0; font-size: var(--text-xl); text-shadow: var(--text-shadow); }
.facility-overlay p { color: rgba(200,195,180,0.9); font-size: var(--text-sm); max-width: 40ch; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }

/* ---- TOURS ---- */
.tours-section { background: var(--surface); }
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.tour-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tour-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-md); }
.tour-card-img-wrap { position: relative; }
.tour-card-img-wrap img { width: 100%; height: 220px; object-fit: cover; }
.tour-country-tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: rgba(8,11,5,0.75); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-dim); color: var(--gold);
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}
.tour-tag-gold { background: var(--gold); color: #0b0f07; border-color: var(--gold); }
.tour-card-body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.tour-date { font-size: var(--text-xs); color: var(--text-faint); letter-spacing: 0.08em; }
.tour-card-body h4 { font-size: var(--text-lg); }
.tour-card-body p { font-size: var(--text-sm); color: var(--text-muted); flex: 1; line-height: 1.65; }
.tour-card-featured { border-color: var(--gold-dim); }
.pga-row {
  display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-10);
  padding: var(--space-4) var(--space-6);
  background: var(--gold-bg); border: 1px solid var(--gold-dim); border-radius: var(--radius-md);
  color: var(--gold); font-size: var(--text-sm);
}

/* ---- CUSTOM SECTION ---- */
.custom-section { background: var(--bg); }
.custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: start; }
.custom-content { display: flex; flex-direction: column; gap: var(--space-5); }
.custom-content p { color: var(--text-muted); line-height: 1.75; }
.custom-features { display: flex; flex-direction: column; gap: var(--space-3); }
.custom-features li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--text-muted); }
.custom-form-wrap { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-8); }
.custom-form-wrap h3 { font-size: var(--text-lg); color: var(--text); margin-bottom: var(--space-6); border-bottom: 1px solid var(--divider); padding-bottom: var(--space-4); }

/* ---- FORMS ---- */
.enquiry-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-sm); font-weight: 500; color: var(--text-muted); }
.form-note { text-align: center; font-size: var(--text-xs); color: var(--text-faint); }

/* ---- CONTACT ---- */
.contact-section { background: var(--surface); }
.contact-direct { text-align: center; margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-2); color: var(--text-muted); font-size: var(--text-sm); }
.contact-direct a { color: var(--gold); }
.contact-direct a:hover { text-decoration: underline; }

/* ---- MAILING ---- */
.mailing-section { background: var(--gold-bg); border-color: var(--gold-dim); }
.mailing-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-12); align-items: center; max-width: var(--content-default);
}
.mailing-inner h2 { margin-bottom: var(--space-3); }
.mailing-inner > div > p { color: var(--text-muted); font-size: var(--text-sm); }
.mailing-form { display: flex; flex-direction: column; gap: var(--space-4); }
.mailing-fields { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.mailing-fields input { flex: 1; min-width: 160px; }
.mailing-fields .btn-primary { flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer { background: var(--surface); border-top: 1px solid var(--divider); padding-top: var(--space-10); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--space-10); flex-wrap: wrap; gap: var(--space-6); }
.footer-brand { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-logo {
  height: 56px; width: auto; object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.footer-logo-apparel { height: 64px; }
.footer-tagline { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); padding-left: 2px; }
.footer-nav { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.footer-nav a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--text); }
.footer-social { display: flex; gap: var(--space-4); }
.footer-social a { color: var(--text-muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--divider); padding: var(--space-5) var(--space-6); text-align: center; }
.footer-bottom p { font-size: var(--text-xs); color: var(--text-faint); max-width: none; }
.footer-bottom a { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-block, .destination-block-reverse { grid-template-columns: 1fr; direction: ltr; }
  .dest-gallery-grid { grid-template-rows: 260px 200px; }
  .custom-layout { grid-template-columns: 1fr; }
  .mailing-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-heading { font-size: clamp(2.8rem, 9vw, 5rem); }
  .hero-tagline-banner span { font-size: clamp(1rem, 4vw, 1.6rem); }
  .tours-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-scroll-indicator { display: none; }
  .facility-strip { height: 280px; }
  .facility-overlay { padding: var(--space-8); }
}
@media (max-width: 480px) {
  .dest-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-img-main, .dest-img, .dest-img-span { height: 220px; }
  .dest-gallery-vn, .dest-gallery-th { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-gallery-vn .dest-img, .dest-gallery-th .dest-img { height: 200px; grid-column: 1 !important; grid-row: auto !important; }
}

/* ---- ACCESSIBILITY / SEO ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-row {
  display: flex;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.testimonial-card {
  flex: 1;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: #C9A84C;
  opacity: 0.35;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-stars {
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A84C;
}

@media (max-width: 640px) {
  .testimonials-row {
    flex-direction: column;
    gap: 1rem;
  }
}
