@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Lato:wght@300;400;500&family=Oswald:wght@500;600&display=swap');

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

  :root {
    --peach: #E8927C;
    --peach-light: #F5C9B8;
    --peach-pale: #FDF0EB;
    --teal: #7BA899;
    --teal-dark: #5C8F82;
    --teal-pale: #EBF4F1;
    --sand: #F7F3EE;
    --stone: #8C7B6E;
    --dark: #2A2520;
    --white: #FFFFFF;
    --serif: 'DM Sans', sans-serif;
    --body: 'Lato', sans-serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }
  section[id], div[id] { scroll-margin-top: 140px; }

  body {
    font-family: var(--sans);
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(232,121,90,0.15);
    transition: box-shadow 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 36px;
    height: 36px;
  }

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

  .nav-logo-text span:first-child {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--peach);
    letter-spacing: 0.04em;
  }

  .nav-logo-text span:last-child {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--peach); }
  .nav-links a.active { color: var(--peach); }

  .nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
  }

  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--dark); }
  .nav-toggle-icon-close { display: none; }
  .nav-toggle.open .nav-toggle-icon-menu { display: none; }
  .nav-toggle.open .nav-toggle-icon-close { display: block; }

  /* HERO */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://peachvillamanagement.com/wp-content/uploads/2026/07/hero.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    transform: scale(1.03);
    transition: transform 8s ease;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(42,37,32,0.72) 0%,
      rgba(42,37,32,0.45) 55%,
      rgba(42,37,32,0.15) 100%
    );
  }

  .hero:hover .hero-bg { transform: scale(1); }

  .hero-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 5rem 8rem;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
  }

  .hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .hero-headline em {
    font-style: normal;
    color: var(--peach-light);
  }

  .hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--peach);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
  }

  .btn-primary:hover {
    background: #d4694c;
    transform: translateY(-2px);
  }

  .btn-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--peach);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
  }

  .btn-cta-email:hover {
    background: var(--peach-pale);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover {
    color: var(--white);
    border-color: var(--white);
  }


  .hero-badge {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
  }

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

  .hero-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .hero-badge-top { font-size: 13px; font-weight: 500; color: var(--dark); }
  .hero-badge-bottom { font-size: 11px; color: var(--stone); }

  /* ── SUNSET WIDGET — single compact card ── */
  .island-time {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    animation: floatGentle 7s ease-in-out infinite;
    font-family: var(--sans);
    color: rgba(255,255,255,0.95);
    border: 0.5px solid rgba(255,255,255,0.25);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.30),
      inset 0 1px 0 rgba(255,255,255,0.22);
    background: #2a3a55;
  }
  @keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
  }
  /* Live sky tint behind everything */
  .it-sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: background 3s ease;
    background: linear-gradient(180deg, #2a3a55 0%, #5a6a85 55%, #d8a888 100%);
    pointer-events: none;
  }
  /* Drifting clouds — opacity by weather */
  .it-cloud {
    position: absolute;
    background: rgba(255,255,255,0.65);
    border-radius: 50%;
    filter: blur(2.5px);
    z-index: 1;
    animation: itDrift linear infinite;
    opacity: 0;
    transition: opacity 2s ease, background 2s ease;
    pointer-events: none;
  }
  .it-cloud::before, .it-cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
  }
  .it-cloud.c1 { width: 38px; height: 10px; top: 14px; animation-duration: 70s; animation-delay: -8s; }
  .it-cloud.c1::before { width: 18px; height: 18px; top: -7px; left: 6px; }
  .it-cloud.c1::after  { width: 14px; height: 14px; top: -4px; left: 20px; }
  .it-cloud.c2 { width: 28px; height: 8px; top: 32px; animation-duration: 90s; animation-delay: -30s; opacity: 0; background: rgba(255,255,255,0.5); }
  .it-cloud.c2::before { width: 14px; height: 14px; top: -5px; left: 5px; }
  .it-cloud.c2::after  { width: 11px; height: 11px; top: -3px; left: 16px; }
  @keyframes itDrift {
    0%   { transform: translateX(-50px); }
    100% { transform: translateX(260px); }
  }
  /* Rain overlay — removed: the animated streaks read as broken scanlines.
     Weather is still conveyed by the text label (e.g. "Showers · 27°"). */
  .it-rain {
    display: none;
  }
  /* Twinkling stars at night */
  .it-stars {
    position: absolute; inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease;
    background-image:
      radial-gradient(1px 1px at 18% 24%, #fff, transparent),
      radial-gradient(1px 1px at 44% 14%, rgba(255,255,255,0.7), transparent),
      radial-gradient(1.2px 1.2px at 72% 30%, #fff, transparent),
      radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,0.85), transparent),
      radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.55), transparent);
    pointer-events: none;
  }

  .it-body {
    position: relative;
    z-index: 3;
    padding: 0.85rem 0.95rem 0.7rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15,25,45,0.45) 70%, rgba(15,25,45,0.78) 100%);
  }
  .it-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
  }
  .it-head .it-loc {
    display: flex; align-items: center; gap: 6px;
  }
  .it-pulse {
    width: 5px; height: 5px;
    background: var(--peach);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(232,146,124,0.7);
    animation: itPulse 2s ease-out infinite;
  }
  @keyframes itPulse {
    0%   { box-shadow: 0 0 0 0 rgba(232,146,124,0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(232,146,124,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,146,124,0); }
  }
  .it-weather {
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255,255,255,0.78);
  }

  /* Sun arc chart — the hero of this widget */
  .it-arc {
    position: relative;
    width: 100%;
    height: 70px;
    margin: 0.15rem 0 0.35rem;
  }
  .it-arc svg {
    width: 100%; height: 100%;
    overflow: visible;
    display: block;
  }
  .it-arc-end {
    position: absolute;
    bottom: -2px;
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
  }
  .it-arc-end.left  { left: 0; }
  .it-arc-end.right { right: 0; }
  .it-arc-end b { font-weight: 500; color: rgba(255,255,255,0.92); }

  .it-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 0.5px solid rgba(255,255,255,0.18);
  }
  .it-foot-left {
    display: flex; align-items: baseline; gap: 4px;
  }
  .it-clock {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
  }
  .it-clock small {
    font-family: var(--sans);
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-left: 2px;
  }
  .it-cd {
    font-size: 10.5px;
    color: rgba(255,255,255,0.78);
    text-align: right;
    line-height: 1.3;
  }
  .it-cd b {
    color: var(--white);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
  }
  .it-cd .it-cd-label {
    display: block;
    font-size: 8.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1px;
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--teal);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
  }

  .trust-dot {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
  }

  /* WHY SECTION */
  .why-section {
    padding: 3.5rem 0 7rem;
    background: var(--sand);
  }

  .why-section .section-header {
    padding: 0 5rem;
    max-width: 560px;
    margin-bottom: 3rem;
  }

  .section-header {
    max-width: 560px;
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }

  .section-title em {
    font-style: normal;
    color: var(--peach);
  }

  .why-track-wrap {
    overflow: hidden;
  }

  .why-track {
    display: flex;
    gap: 16px;
    padding: 8px 0;
    width: max-content;
  }

  @keyframes why-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .why-card {
    border-radius: 16px;
    width: 320px;
    min-height: 240px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
  }

  .why-card:hover {
    background: #E8927C;
    box-shadow: 0 16px 40px rgba(232,146,124,0.35), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-6px);
  }

  .why-card[data-type="teal"]:hover {
    background: #7BA899;
    box-shadow: 0 16px 40px rgba(123,168,153,0.35), 0 4px 12px rgba(0,0,0,0.1);
  }

  .why-icon {
    flex-shrink: 0;
    transition: filter 0s;
  }

  .why-card:hover .why-icon { filter: brightness(0) invert(1); }

  .why-number { display: none; }

  .why-title {
    font-size: 15px;
    font-weight: 500;
    color: #2A2520;
    line-height: 1.3;
    transition: color 0s;
  }

  .why-card:hover .why-title { color: #fff; }

  .why-body {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #8C7B6E;
    line-height: 1.7;
    transition: color 0s, font-weight 0s;
  }

  .why-card:hover .why-body { color: #fff; font-weight: 400; }

  /* PACKAGES SECTION */
  .packages-section {
    padding: 3.5rem 5rem 7rem;
    background: var(--white);
  }

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

  .package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 0.5px solid rgba(140,123,110,0.12);
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
  }

  .package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }

  /* teal-soft: Essential & À La Carte */
  .package-card.teal-soft {
    background: rgba(123,168,153,0.08);
    border: 0.5px solid rgba(92,143,130,0.2);
  }

  /* peach-strong: Full-Service — öne çıkan */
  .package-card.featured {
    background: rgba(232,146,124,0.14);
    border: 1.5px solid rgba(192,112,90,0.32);
    box-shadow: 0 8px 40px rgba(192,112,90,0.12);
  }

  .package-card.featured::before {
    content: 'Most popular';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--peach);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .package-icon {
    width: 44px;
    height: 50px;
    margin-bottom: 1.25rem;
    position: relative;
    flex-shrink: 0;
  }

  /* ghost bg art — large faint version of icon */
  .pkg-ghost {
    position: absolute;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
    opacity: 0.1;
  }

  .package-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.25rem;
  }

  .package-card.featured .package-name {
    font-size: 25px;
    font-weight: 500;
    color: var(--dark);
  }

  .package-tagline {
    font-size: 12px;
    font-weight: 400;
    color: var(--stone);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .package-card.featured .package-tagline {
    color: #9A6050;
    font-weight: 500;
  }

  .package-price { margin-bottom: 2rem; }

  .package-price-num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: var(--teal-dark);
    line-height: 1;
  }

  .package-card.featured .package-price-num {
    font-size: 48px;
    font-weight: 400;
    color: var(--peach);
  }

  .package-price-unit {
    font-size: 12px;
    color: var(--stone);
    margin-top: 4px;
  }

  .package-card.featured .package-price-unit { color: #9A6050; }

  .package-price-from {
    font-size: 12px;
    font-weight: 400;
    margin-right: 4px;
    vertical-align: baseline;
  }

  .package-divider {
    height: 0.5px;
    background: rgba(92,143,130,0.18);
    margin-bottom: 1.5rem;
  }

  .package-card.featured .package-divider { background: rgba(192,112,90,0.2); }

  .package-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .package-features li {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }

  .package-card.featured .package-features li { color: #6B4535; }

  .package-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .package-card.featured .package-features li::before { color: var(--peach); }

  .pkg-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    border: 1px solid rgba(92,143,130,0.25);
    color: var(--dark);
  }

  .pkg-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }

  .pkg-btn-featured {
    background: var(--peach);
    color: var(--white);
    border-color: transparent;
    font-size: 14px;
    padding: 14px 24px;
  }

  .pkg-btn-featured:hover {
    background: #d4694c;
  }

  /* REPORT TEASER */
  .report-section {
    padding: 3.5rem 5rem 7rem;
    background: var(--white);
    background-image: url('https://peachvillamanagement.com/wp-content/uploads/2026/07/Beach_villa.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .report-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42,37,32,0.55);
  }

  .report-section > * {
    position: relative;
    z-index: 1;
  }

  .report-visual {
    background: var(--sand);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
  }

  .report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .report-badge {
    background: var(--peach);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .report-month {
    font-size: 12px;
    color: var(--stone);
  }

  .report-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 1.5rem;
  }

  .report-metric {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
  }

  .report-metric-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
  }

  .report-metric-value {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
  }

  .report-metric-sub {
    font-size: 11px;
    color: var(--teal-dark);
    margin-top: 3px;
  }

  .report-bar-row {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
  }

  .report-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .report-bar-label span:first-child { font-size: 12px; color: var(--stone); }
  .report-bar-label span:last-child { font-size: 12px; font-weight: 500; color: var(--dark); }

  .report-bar-track {
    height: 6px;
    background: var(--sand);
    border-radius: 10px;
    overflow: hidden;
  }

  .report-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal) 0%, var(--peach) 100%);
    border-radius: 10px;
    transition: width 1s ease;
  }

  /* SUSTAINABILITY STRIP */
  .sustain-strip {
    background: #3D6B62;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .sustain-text { flex: 1; min-width: 280px; }

  .sustain-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
  }

  .sustain-headline {
    font-family: var(--sans);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }
  .sustain-headline em { font-style: normal; color: var(--peach-light); }

  .sustain-body {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }

  .sustain-btn {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
  }
  .sustain-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

  .process-btn-wrap { text-align: center; margin-top: 2.5rem; }
  .process-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--teal-dark);
    border: 1px solid rgba(92,143,130,0.35);
    transition: background 0.2s, border-color 0.2s;
  }
  .process-btn:hover { background: rgba(92,143,130,0.08); border-color: var(--teal-dark); }

  .sustain-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 240px;
  }

  .sustain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 0.5px solid rgba(255,255,255,0.08);
  }

  .sustain-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .sustain-item-text {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }

  /* TESTIMONIAL */
  /* REVIEWS SECTION */
  .reviews-section {
    padding: 5rem 5rem 4rem;
    background: var(--white);
  }

  .reviews-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .review-featured {
    background: var(--peach-pale);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .review-featured-quote {
    font-family: Georgia, serif;
    font-size: 100px;
    color: var(--peach);
    opacity: 0.15;
    position: absolute;
    top: -18px;
    left: 16px;
    line-height: 1;
  }

  .review-featured-stars {
    color: var(--peach);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .review-featured-text {
    font-family: var(--serif);
    font-size: clamp(17px, 1.5vw, 20px);
    font-style: italic;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .review-featured-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .review-via {
    font-size: 10px;
    color: var(--stone);
    background: rgba(0,0,0,0.07);
    border-radius: 8px;
    padding: 2px 9px;
  }

  .review-via.small {
    font-size: 10px;
    padding: 2px 8px;
    margin-top: 6px;
    display: inline-block;
    align-self: flex-start;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .review-card {
    border: 0.5px solid rgba(44,37,32,0.1);
    border-radius: 14px;
    padding: 1.1rem 1.1rem 0.9rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
  }

  .review-card.teal { background: var(--teal-pale); border-color: rgba(92,143,130,0.15); }
  .review-card.peach { background: var(--peach-pale); border-color: rgba(232,146,124,0.15); }

  .review-card-stars {
    color: var(--peach);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .review-card-text {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 0.6rem;
    flex: 1;
  }

  .review-card-author {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal-dark);
  }

  .review-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .reviews-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 0.5px solid rgba(44,37,32,0.1);
  }

  .reviews-score {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .reviews-score-num {
    font-size: 32px;
    font-weight: 300;
    color: var(--peach);
    line-height: 1;
  }

  .reviews-score-stars {
    color: var(--peach);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }

  .reviews-score-label {
    font-size: 11px;
    color: var(--stone);
  }

  .reviews-verified {
    font-size: 11px;
    color: var(--stone);
  }

  /* PROCESS SECTION */
  .process-section {
    padding: 3.5rem 5rem 4rem;
    background: var(--sand);
  }

  .process-steps {
    margin-top: 3.5rem;
    width: 100%;
  }

  
  /* Vertical SVG diagram shown only on mobile (tablet/desktop keep the
     original horizontal diagram). */
  .process-steps-mobile {
    display: none;
    margin-top: 2.5rem;
  }

  .process-step {
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sand);
    border: 0.5px solid var(--peach-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--peach);
    transition: background 0.3s, color 0.3s;
  }

  .process-step:hover .process-num {
    background: var(--peach);
    color: var(--white);
    border-color: var(--peach);
  }

  .process-step-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .process-step-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.6;
  }

  /* CTA FOOTER SECTION */
  .cta-section {
    padding: 6rem 5rem;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://peachvillamanagement.com/wp-content/uploads/2026/07/sand.png');
    background-size: cover;
    background-position: center;
  }

  .cta-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 220px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  }

  .cta-left {
    background: var(--peach);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cta-headline {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0;
  }

  .cta-headline em {
    font-style: italic;
    color: var(--peach-pale);
  }

  .cta-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-top: 10px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .cta-right {
    background: var(--sand);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .cta-buttons { display: none; }

  .btn-cta-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    color: #5C8F82;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.22), 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.15s;
  }

  .btn-cta-email:hover { transform: translateY(-1px); }

  .btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #4A7A6D;
    color: #fff;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.22), 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.15s;
  }

  .btn-wa:hover { transform: translateY(-1px); }

  .cta-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #5C5047;
    letter-spacing: 0.06em;
    text-align: center;
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    display: flex;
    flex-wrap: wrap;
  }
  .footer-copy .fc-email { order: 1; }
  .footer-copy .fc-sep-b { order: 2; }
  .footer-copy .fc-phone { order: 3; }
  .footer-copy .fc-sep-a { order: 4; }
  .footer-copy .fc-copyright { order: 5; }

  .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--teal); }

  /* ── VILLAS PREVIEW (homepage) ── */
  .villas-preview-section {
    padding: 3.5rem 5rem 7rem;
    background: var(--sand);
  }

  .villas-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .vp-card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid rgba(140,123,110,0.12);
    transition: transform 0.22s, box-shadow 0.22s;
    display: block;
  }

  .vp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  }

  .vp-thumb {
    position: relative;
  }

  .vp-thumb-inner {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .vp-thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .vp-card:hover .vp-thumb-inner img {
    transform: scale(1.04);
  }

  .vp-tag {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
  }

  .vp-tag.available { color: var(--teal-dark); }
  .vp-tag.booked    { color: var(--peach); }

  .vp-airbnb-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--peach);
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    transition: color 0.2s;
  }

  .vp-card:hover .vp-airbnb-link {
    color: var(--teal-dark);
  }

  .vp-info {
    padding: 1rem 1.1rem 1.2rem;
  }

  .vp-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 3px;
  }

  .vp-meta {
    font-size: 12px;
    color: var(--stone);
    font-weight: 300;
    margin-bottom: 0.6rem;
  }

  .vp-price {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--peach);
  }

  .vp-price span {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--stone);
    font-weight: 300;
  }

  /* SCROLL ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
  .hero-headline { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
  .hero-sub     { animation: fadeUp 0.6s ease both; animation-delay: 0.3s; }
  .hero-actions { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }

  /* RESPONSIVE BASICS */
  /* ── TABLET (max 900px) ── */
  @media (max-width: 900px) {
    section[id], div[id] { scroll-margin-top: 110px; }
    nav { padding: 0.75rem 2rem; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; } .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 0.25rem 2rem 1rem; box-shadow: 0 12px 24px rgba(0,0,0,0.1); border-bottom: 0.5px solid rgba(232,121,90,0.15); z-index: 100; } .nav-links.open { display: flex; } .nav-links li { width: 100%; } .nav-links li a { display: block; padding: 0.75rem 0; } .nav-links li:not(:last-child) a { border-bottom: 0.5px solid rgba(140,123,110,0.1); } .nav-links li:last-child { margin-top: 0.5rem; padding-bottom: 0.25rem; } .nav-links li:last-child a.nav-cta { display: inline-flex; width: auto; padding: 10px 22px !important; }
    .nav-logo img { height: 108px !important; }

    .hero { min-height: 100svh; }
    .hero-left { padding: 8rem 2rem 5rem; }
    .hero-badge { bottom: 1.5rem; right: 1.5rem; }
    .island-time { width: 170px; bottom: 1.5rem; right: 1.5rem; }

    .why-grid { grid-template-columns: 1fr; gap: 0; }
    .why-card:not(:last-child) { border-right: none; border-bottom: 0.5px solid var(--sand); }
    .why-section .section-header { padding: 0; }
    .packages-grid { grid-template-columns: 1fr; gap: 1rem; }
    .villas-preview-grid { grid-template-columns: 1fr 1fr; }

    .report-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-section, .packages-section, .report-section, .villas-preview-section,
    .sustain-strip, .testimonial-section, .reviews-section,
    .process-section, .cta-section { padding: 4rem 2rem; }
    .reviews-layout { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }

    .sustain-strip { flex-direction: column; align-items: stretch; gap: 2.5rem; }
    footer { padding: 2rem 2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-links { flex-wrap: wrap; row-gap: 0.5rem; }
    .process-steps::before { display: none; }
    .trust-bar { gap: 1.5rem; padding: 1rem 2rem; flex-wrap: wrap; }
  }

  /* ── MOBILE (max 600px) ── */
  @media (max-width: 600px) {
    section[id], div[id] { scroll-margin-top: 85px; }
    nav { padding: 0.5rem 1.25rem; }
    .nav-logo img { height: 96px !important; }

    .hero { flex-direction: column; align-items: stretch; min-height: auto; }
    .hero-left { padding: 8.5rem 1.25rem 2rem; }
    .hero-title { font-size: clamp(28px, 8vw, 40px); line-height: 1.1; }
    .hero-sub { font-size: 15px; }
    .hero-actions { gap: 0.6rem 1rem; }
    .hero-badge { display: none; }
    .island-time { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: 200px; margin: 1.5rem 1.25rem 1.5rem auto; animation: none; transform: scale(0.82); transform-origin: right center; }
    .hero-scroll { display: none; }

    .why-section, .packages-section, .report-section, .villas-preview-section,
    .sustain-strip, .testimonial-section, .reviews-section,
    .process-section, .cta-section { padding: 3.5rem 1.25rem; }
    .process-section { padding: 2rem 1.25rem 1.5rem; }
    .why-section .section-header { padding: 0; }
    .reviews-layout { grid-template-columns: 1fr; }
    .reviews-grid {
      display: flex;
      grid-template-columns: unset;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 10px;
      margin: 0 -1.25rem;
      padding: 0 1.25rem 0.5rem;
      -webkit-overflow-scrolling: touch;
    }
    .review-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
    }
    .review-card-text {
      font-size: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .why-grid { grid-template-columns: 1fr; border-radius: 16px; }
    .why-card { padding: 2rem 1.5rem; }

    .packages-grid { grid-template-columns: 1fr; gap: 1rem; }
    .package-card { padding: 2rem 1.5rem; }
    .package-price-num { font-size: 32px; }
    .package-card.featured .package-price-num { font-size: 38px; }

    .process-steps svg { display: none !important; }
    .process-steps-mobile { display: block; margin-top: 1.5rem; }
    .process-btn-wrap { margin-top: 1.25rem; }
    .process-steps::before { display: none; }

    .villas-preview-grid { grid-template-columns: 1fr; }

    .cta-card { grid-template-columns: 1fr; }
    .cta-left, .cta-right { padding: 2rem 1.5rem; }

    .report-section { grid-template-columns: 1fr; gap: 2rem; }
    .report-metrics { grid-template-columns: 1fr 1fr; }

    .sustain-strip { flex-direction: column; align-items: stretch; gap: 2rem; padding: 3rem 1.25rem; }
    .sustain-items { width: 100%; }

    .testimonial-quote { font-size: clamp(18px, 4vw, 24px); }

    .trust-bar { flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1.25rem 1.25rem; }
    .trust-item { font-size: 12px; }
    .trust-dot { display: none; }

    .section-title { font-size: clamp(24px, 7vw, 34px); }
    .section-eyebrow { font-size: 10px; }

    footer { padding: 2rem 1.25rem; flex-direction: column; gap: 0.75rem; font-size: 12px; }
    .footer-links { flex-direction: column; align-items: flex-start; gap: 0.6rem; } .footer-copy { flex-direction: column; align-items: flex-start; gap: 0.3rem; } .footer-copy .fc-sep { display: none; }
  }

  /* PAGE TRANSITION */
  body { animation: pageFadeIn 0.15s ease; }
  @keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

.entry-content.is-layout-constrained > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}
.entry-content.is-layout-constrained {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.entry-content.is-layout-constrained {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.entry-content.is-layout-constrained > .page-wrap {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}