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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #fefdf8;
  --cream-100: #fef9ef;
  --cream-200: #fdf3e0;
  --cream-300: #f5e6c8;
  --warm-50: #faf8f5;
  --warm-100: #f5f0e8;
  --warm-200: #e8dfd3;
  --warm-700: #7c6b5a;
  --warm-800: #5a4e40;
  --warm-900: #3d3429;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(6, 79, 59, 0.06), 0 1px 2px rgba(6, 79, 59, 0.04);
  --shadow-md: 0 4px 16px rgba(6, 79, 59, 0.08), 0 2px 6px rgba(6, 79, 59, 0.05);
  --shadow-lg: 0 12px 40px rgba(6, 79, 59, 0.12), 0 4px 12px rgba(6, 79, 59, 0.06);
  --shadow-xl: 0 20px 60px rgba(6, 79, 59, 0.14), 0 8px 20px rgba(6, 79, 59, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--warm-900);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--emerald-900);
}

em {
  font-style: italic;
  color: var(--emerald-700);
}

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

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

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-800);
}

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

.main-nav ul {
  display: flex;
  gap: 8px;
}

.main-nav a {
  display: block;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--warm-800);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
  color: var(--emerald-700);
  background: rgba(6, 95, 70, 0.06);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  color: var(--cream-100);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  background: rgba(6, 95, 70, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--emerald-900);
  margin-bottom: 24px;
}

.hero-content h1 em {
  color: var(--emerald-600);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--warm-700);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-700);
}

.meta-item svg {
  color: var(--emerald-600);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.938rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.3);
}

.btn-primary:hover {
  background: var(--emerald-800);
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--emerald-800);
  border: 2px solid rgba(6, 95, 70, 0.2);
}

.btn-secondary:hover {
  border-color: var(--emerald-700);
  background: rgba(6, 95, 70, 0.04);
  transform: translateY(-2px);
}

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

/* ===== HERO IMAGE ===== */
.hero-image {
  position: relative;
}

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

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

.hero-img-float {
  position: absolute;
  bottom: -24px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-50);
}

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

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--emerald-800);
  font-weight: 700;
  font-size: 0.813rem;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-badge svg {
  color: var(--emerald-500);
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  background: rgba(6, 95, 70, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.063rem;
  color: var(--warm-700);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ===== ABOUT ===== */
.about {
  background: var(--cream-100);
  padding: 100px 0;
}

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

.about-images {
  position: relative;
}

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

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

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-100);
}

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

.about-stat {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--emerald-700);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

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

.about-content > p {
  font-size: 1.063rem;
  color: var(--warm-700);
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--warm-800);
  font-weight: 500;
}

.about-features svg {
  flex-shrink: 0;
  color: var(--emerald-600);
  margin-top: 2px;
}

/* ===== OFFERINGS ===== */
.offerings {
  background: var(--cream-50);
  padding: 100px 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(6, 95, 70, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 95, 70, 0.15);
}

.offering-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 95, 70, 0.07);
  border-radius: var(--radius-md);
  color: var(--emerald-700);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.offering-card:hover .offering-icon {
  background: var(--emerald-700);
  color: var(--white);
}

.offering-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 10px;
}

.offering-card p {
  font-size: 0.938rem;
  color: var(--warm-700);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream-100);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-item--large {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: 520px;
}

.gallery-item--large img {
  min-height: 520px;
}

.gallery-item:not(.gallery-item--large) {
  min-height: 240px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  min-height: 260px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.8), transparent);
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHY VINTAGE ===== */
.why-vintage {
  background: var(--emerald-800);
  padding: 100px 0;
  color: var(--white);
}

.why-vintage .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

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

.why-vintage .section-title em {
  color: var(--cream-300);
}

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

.why-content > p {
  font-size: 1.063rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.why-cards {
  display: grid;
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(6px);
}

.why-card-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
  background: var(--cream-50);
  padding: 100px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-info {
  padding: 40px 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 95, 70, 0.07);
}

.visit-info h2 {
  margin-bottom: 16px;
}

.visit-desc {
  font-size: 1.063rem;
  color: var(--warm-700);
  margin-bottom: 36px;
}

.visit-details {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}

.visit-detail dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.813rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 4px;
}

.visit-detail dt svg {
  color: var(--emerald-600);
}

.visit-detail dd {
  font-size: 1rem;
  color: var(--warm-800);
  line-height: 1.7;
}

.visit-detail a {
  color: var(--warm-800);
  transition: color var(--transition);
}

.visit-detail a:hover {
  color: var(--emerald-700);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

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

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

.contact-text h2 {
  margin-bottom: 16px;
}

.contact-text > p {
  font-size: 1.063rem;
  color: var(--warm-700);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 95, 70, 0.07);
}

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

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--emerald-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.938rem;
  color: var(--warm-900);
  background: var(--cream-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-700);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(6, 95, 70, 0.07);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--emerald-800);
}

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

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--emerald-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

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

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

.footer-brand p {
  font-size: 0.938rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-links ul {
  display: grid;
  gap: 10px;
}

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

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

.footer-contact address {
  font-style: normal;
  font-size: 0.938rem;
  line-height: 1.85;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  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);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img-float {
    left: -16px;
    bottom: -16px;
  }

  .hero-badge {
    right: 0;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 480px;
  }

  .about-img-accent {
    right: -12px;
    bottom: -20px;
  }

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

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

  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-item--large img {
    min-height: 320px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .visit-info {
    padding: 28px 24px;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

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

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

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

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

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: 1;
  }

  .gallery-item--large {
    min-height: 260px;
  }

  .gallery-item--large img {
    min-height: 260px;
  }

  .gallery-item:not(.gallery-item--large) {
    min-height: 200px;
  }
}
