/* ─────────────────────────────────────────────────────────────
   D E W E Y   W O N  –  N 1 0 3   O P A L
   Warm · Rounded · Forest Green & Cream
   ───────────────────────────────────────────────────────────── */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a5c3a;
  --green-mid:    #2a7a4f;
  --green-light:  #3d9b65;
  --green-pale:   #e8f5ec;
  --cream:        #f7f4ed;
  --cream-dark:   #ede8dc;
  --warm-gray:    #6b6560;
  --warm-gray-light: #9a9490;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(26, 92, 58, .08);
  --shadow-md:    0 8px 30px rgba(26, 92, 58, .12);
  --shadow-lg:    0 16px 50px rgba(26, 92, 58, .15);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    32px;
  --radius-xl:    48px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-accent:  'Lora', Georgia, serif;
  --transition:   .3s cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--warm-gray);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag--light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 92, 58, .3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 92, 58, .35);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: .85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(247, 244, 237, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
}

.logo-icon {
  color: var(--green-dark);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-top: -2px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(42, 122, 79, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--green-light);
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: .8rem;
  color: var(--warm-gray-light);
  letter-spacing: .04em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero image stack */
.hero-visual {
  position: relative;
}

.hero-img-stack {
  position: relative;
  padding: 20px 0;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img--main {
  width: 100%;
  aspect-ratio: 680 / 820;
}

.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--accent {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 60px;
  right: -20px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-float-card svg {
  color: var(--green-mid);
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: .85rem;
  color: var(--green-dark);
  line-height: 1.3;
}

.hero-float-card span {
  display: block;
  font-size: .75rem;
  color: var(--warm-gray-light);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560 / 640;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  color: var(--green-dark);
  opacity: .08;
}

.about-content {
  max-width: 520px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
}

.feature-card strong {
  display: block;
  font-size: .95rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.feature-card span {
  font-size: .88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── STAY ─────────────────────────────────────────────────── */
.stay {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  margin-bottom: 16px;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.section-header .section-desc {
  margin: 0 auto;
}

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

.stay-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stay-card-img {
  overflow: hidden;
  aspect-ratio: 480 / 360;
}

.stay-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.stay-card:hover .stay-card-img img {
  transform: scale(1.05);
}

.stay-card-body {
  padding: 28px;
}

.stay-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.stay-card-body p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--warm-gray);
}

/* ── LOCATION ─────────────────────────────────────────────── */
.location {
  padding: 100px 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-content {
  max-width: 500px;
}

.location-content .section-title {
  margin-bottom: 24px;
}

.location-content > p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-list svg {
  flex-shrink: 0;
  color: var(--green-mid);
  margin-top: 3px;
}

.location-list strong {
  display: block;
  font-size: .95rem;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.location-list span {
  font-size: .9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.location-list a {
  color: var(--green-mid);
  transition: var(--transition);
}

.location-list a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  aspect-ratio: 600 / 480;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.cta-circle--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.cta-circle--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

.cta-circle--3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 30%;
  background: rgba(255,255,255,.03);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 18px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
}

.contact-detail strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 6px;
}

.contact-detail span {
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--green-mid);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--warm-gray);
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(42, 122, 79, .1);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-weight: 500;
  font-size: .95rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--green-mid);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,.5);
}

.footer-tagline {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: .88rem;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}

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

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    gap: 48px;
  }

  .hero-img--accent {
    left: -20px;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img--accent {
    left: -10px;
    width: 140px;
    height: 140px;
  }

  .hero-float-card {
    right: 0;
    bottom: 40px;
  }

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

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .location-content {
    max-width: 100%;
  }

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

  .contact-info {
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-list a:hover {
    background: var(--green-pale);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
  }

  .nav-overlay.show {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
