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

:root {
  --color-emerald: #1B5E20;
  --color-emerald-light: #2E7D32;
  --color-emerald-dark: #0D3B12;
  --color-cream: #F5F0E8;
  --color-cream-light: #FAF7F2;
  --color-cream-dark: #E8E0D0;
  --color-text: #1A1A1A;
  --color-text-light: #4A4A4A;
  --color-text-muted: #7A7A7A;
  --color-line: #D8D0C4;
  --color-white: #FFFFFF;
  --color-success: #1B5E20;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-emerald);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 0.875rem;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ── Typography ── */
.section-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-emerald);
  color: var(--color-white);
  border-color: var(--color-emerald);
}

.btn-primary:hover {
  background: var(--color-emerald-dark);
  border-color: var(--color-emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.2);
}

.btn-text {
  background: transparent;
  color: var(--color-emerald);
  border-color: var(--color-emerald);
  padding: 0.875rem 1.5rem;
}

.btn-text:hover {
  background: var(--color-emerald);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-emerald);
}

.logo-icon {
  color: var(--color-emerald);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-emerald);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--color-emerald);
}

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

.nav-cta {
  border: 1.5px solid var(--color-emerald);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--color-emerald) !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-cream-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) 0;
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero-headline .accent {
  font-style: italic;
  color: var(--color-emerald);
}

.hero-body {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 7 / 9;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrap:hover img {
  transform: scale(1.02);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* ── Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
  color: var(--color-line);
}

/* ── About ── */
.about {
  padding: var(--space-xl) 0;
  background: var(--color-cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

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

.about-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-line);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.feature-item svg {
  color: var(--color-emerald);
  flex-shrink: 0;
}

/* ── Rooms ── */
.rooms {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.rooms .container {
  max-width: 1200px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.room-card {
  background: var(--color-cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.room-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-info {
  padding: var(--space-md);
}

.room-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.room-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-amenities li {
  font-size: 0.8125rem;
  color: var(--color-emerald);
  background: rgba(27, 94, 32, 0.08);
  padding: 0.3125rem 0.75rem;
  border-radius: 100px;
  font-weight: 400;
}

/* ── Breakfast ── */
.breakfast {
  padding: var(--space-xl) 0;
  background: var(--color-cream-light);
}

.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.breakfast-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.breakfast-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.breakfast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Location ── */
.location {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

.location-address {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: var(--space-sm);
}

.location-address svg {
  color: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 4px;
}

.location-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.detail-item svg {
  color: var(--color-emerald);
  flex-shrink: 0;
}

.location-map iframe {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ── Contact ── */
.contact {
  padding: var(--space-xl) 0;
  background: var(--color-emerald);
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact .section-tag {
  color: rgba(255, 255, 255, 0.6);
}

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

.contact-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-white);
  transition: color var(--transition);
}

.contact-item:hover {
  color: var(--color-cream);
}

.contact-item svg {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-cream-light);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-sm);
  color: var(--color-emerald);
}

.form-success svg {
  color: var(--color-emerald);
}

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--color-text);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--color-emerald-dark);
  color: var(--color-white);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

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

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

.footer-contact {
  text-align: right;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

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

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

.footer-bottom {
  padding-top: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .breakfast-grid,
  .location-grid,
  .contact-grid {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
  }

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

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-cream-light);
    padding: 100px var(--space-md) var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .main-nav a {
    font-size: 1.0625rem;
  }

  .nav-cta {
    margin-top: var(--space-sm);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-lg);
  }

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

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

  .hero-image {
    order: -1;
  }

  .hero-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-grid,
  .breakfast-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .breakfast-image {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
