/* ============================================
   FISHIN' SHACK & VICTORIAN COTTAGE
   Bold Editorial · Emerald + Cream
   ============================================ */

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

:root {
  --emerald: #064e3b;
  --emerald-light: #065f46;
  --emerald-dark: #022c22;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd2;
  --sand: #d4c5a0;
  --charcoal: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

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

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

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

.container--narrow {
  max-width: 720px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--emerald {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.btn--emerald:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn--cream {
  background: var(--cream);
  color: var(--emerald);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.5);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--emerald);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(245, 240, 232, 0.15);
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--sand);
}

/* ---- HEADLINES ---- */
.headline-serif {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--emerald);
  margin-bottom: 24px;
}

.headline-serif--light {
  color: var(--cream);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 78, 59, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 197, 160, 0.15);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-logo-text {
  letter-spacing: 0.02em;
}

.nav-logo-accent {
  color: var(--sand);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 44, 34, 0.82) 0%,
    rgba(6, 78, 59, 0.65) 50%,
    rgba(6, 95, 70, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(212, 197, 160, 0.15);
  border: 1px solid rgba(212, 197, 160, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 240, 232, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ---- FLOATING STATS ---- */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  gap: 0;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--cream);
  padding: 28px 32px;
  min-width: 200px;
  flex: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}

.stat-num {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.813rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section--light {
  background: var(--cream);
}

.section--dark {
  background: var(--emerald);
}

/* ---- INTRO ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text p {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(6, 78, 59, 0.15);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---- ROOMS ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.room-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 197, 160, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  border-color: rgba(212, 197, 160, 0.4);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.room-card-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-card-img img {
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  color: var(--emerald);
  font-family: 'Inter', sans-serif;
  font-size: 0.688rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.room-card-body {
  padding: 32px;
}

.room-card-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.room-card-body p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.938rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  margin-bottom: 28px;
}

.room-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 8px;
}

.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
}

/* ---- EXPERIENCE ---- */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.exp-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.exp-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.12);
}

.exp-item-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

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

.exp-item:hover .exp-item-img img {
  transform: scale(1.05);
}

.exp-item-body {
  padding: 28px;
}

.exp-item-title {
  font-size: 1.313rem;
  color: var(--emerald);
  margin-bottom: 10px;
}

.exp-item-body p {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

.location-info p {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  font-style: normal;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--text);
}

.contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

.contact-row a {
  color: var(--emerald);
  text-decoration: underline;
  text-decoration-color: rgba(6, 78, 59, 0.3);
  text-underline-offset: 3px;
  transition: var(--transition);
}

.contact-row a:hover {
  text-decoration-color: var(--emerald);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ---- CTA ---- */
.section--cta {
  background: var(--emerald-dark);
  padding: 100px 0;
  text-align: center;
}

.cta-sub {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---- CONTACT FORM ---- */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header p {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(6, 78, 59, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

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

.form-note {
  text-align: center;
  font-size: 0.813rem;
  color: var(--text-light);
  margin-top: 16px;
}

.form-note a {
  color: var(--emerald);
  text-decoration: underline;
  text-decoration-color: rgba(6, 78, 59, 0.3);
}

.form-success {
  text-align: center;
  padding: 64px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(6, 78, 59, 0.08);
}

.form-success svg {
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.75rem;
  color: var(--emerald);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo-accent {
  color: var(--sand);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.938rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.938rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-color: rgba(212, 197, 160, 0.3);
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer-contact a:hover {
  text-decoration-color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.813rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-stats {
    justify-content: stretch;
  }
  .stat-card {
    min-width: auto;
    padding: 20px 24px;
  }
  .stat-num {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 78, 59, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 197, 160, 0.15);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 140px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: 100%;
  }

  .stat-card {
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
  }

  .stat-num {
    font-size: 1.5rem;
    margin-bottom: 0;
    min-width: 60px;
  }

  .stat-label {
    font-size: 0.813rem;
  }

  .intro-grid,
  .rooms-grid,
  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    order: -1;
  }

  .section {
    padding: 72px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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