/* Vello-inspired base */
:root {
  --brand-primary: #2f2a26;
  --brand-accent: #c9a27e;
  --brand-light: #f8f5f2;
  --text-primary: #0f172a;
  --text-muted: #475569;
  --card-bg: #ffffff;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--brand-light);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 245, 242, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  color: var(--text-muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(47, 42, 38, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-primary);
  border-color: rgba(47, 42, 38, 0.2);
}

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

.hero {
  position: relative;
  padding: 80px 0 60px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-content {
  position: relative;
  color: #ffffff;
  padding: 40px 0;
}

.hero .card {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 16px;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

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

.hero-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
}

.booking-header {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.booking-header h2 {
  margin-bottom: 16px;
}

.booking-header p {
  max-width: 640px;
}

.booking-intro {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.booking-intro p {
  flex: 1;
}

.booking-highlight {
  font-style: italic;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--brand-light) 0%, rgba(201, 162, 126, 0.15) 100%);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand-accent);
  margin-top: 16px;
}

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 .card,
#giftcards .card {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

#giftcards .card {
  display: grid;
  gap: 12px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.profile-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  object-fit: cover;
}

.booking-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  padding: 24px;
  z-index: 50;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal-content {
  max-width: 960px;
  width: 100%;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  background: #ffffff;
}

.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.contact-details p {
  margin: 8px 0;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

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

.contact-card h3 {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b5f67;
  font-weight: 700;
}

.contact-link {
  color: var(--brand-primary);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-form h3 {
  margin: 0 0 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(47, 42, 38, 0.1);
}

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

.contact-form .btn {
  margin-top: 8px;
  align-self: flex-start;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  fill: #22c55e;
  margin-bottom: 16px;
}

.form-success h3 {
  margin: 0 0 8px;
  color: var(--text-primary);
}

.form-success p {
  margin: 0;
  color: var(--text-muted);
}

.social-links {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.map-header {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.map-title {
  font-weight: 700;
}

.map-address {
  color: var(--text-muted);
  font-size: 14px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 15px;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(47, 42, 38, 0.3);
  border-color: rgba(47, 42, 38, 0.4);
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  background: var(--brand-primary);
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  justify-items: center;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-legal {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #ffffff;
  justify-self: center;
}

.footer-badge span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  line-height: 1;
}

.footer-badge img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin-top: -2px;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-intro {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .header-inner {
    padding-block: 12px;
  }

  .logo span {
    font-size: 14px;
  }

  .header-inner .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

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

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