@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --accent: #c40001;
  --accent-strong: #c41900;
  --ink: #414042;
  --slate: #2f3a44;
  --paper: #ffffff;
  --paper-soft: #f7f7f7;
  --line: #e2e2e2;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', Helvetica, Arial, sans-serif;
  --transition: 200ms ease;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-strong); }

img { max-width: 100%; height: auto; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.brand-logo {
  width: 88px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 0.98rem;
  z-index: 50;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

main { min-height: 70vh; }

.section {
  padding: 28px 22px;
  background: var(--paper-soft);
}

.intro-welcome {
  background: var(--paper);
  padding: 38px 22px;
}

.intro-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  max-width: 860px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

.feature-bg {
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
}

.feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("Assets/backgrounds/rose-background.webp") repeat;
  background-size: auto 90%;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--slate);
  color: #ffffff;
  isolation: isolate;
  padding: 0 0 5vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 58, 68, 0.35), rgba(47, 58, 68, 0.45));
  z-index: 1;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform: scale(1.02);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 16px 20px 0;
  margin-top: 0;
  animation: fadeInUp 900ms ease forwards;
  opacity: 0;
  transform: translateY(12px);
}

.logo-floating {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -10%) translateY(-30px);
  width: 450px;
  height: 450px;
  display: grid;
  place-items: center;
  z-index: 3;
  animation: fadeIn 1200ms ease 120ms forwards;
  opacity: 0;
}

.logo-floating img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.65))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.6));
}

.logo-floating::before {
  content: '';
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 80%);
  filter: blur(6px);
  z-index: -1;
}

.logo-floating::before {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 72%);
  filter: blur(5px);
  z-index: -1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 18px auto 12px;
  max-width: 720px;
  color: #ffffff;
  letter-spacing: 0.4px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.85), 0 12px 26px rgba(0, 0, 0, 0.55);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.04rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
}

.hero p::before {
  content: none;
}

.hero-alt {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 6vh;
  color: #ffffff;
  isolation: isolate;
}

.hero-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 58, 68, 0.35), rgba(47, 58, 68, 0.55));
  z-index: 1;
}

.hero-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url("Assets/home/home-hero.webp")) center/cover no-repeat;
  filter: brightness(0.78);
  z-index: 0;
}

.hero-alt .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 24px 20px 0;
  margin: 0;
}

.hero-alt h1 {
  margin: 0 0 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.85), 0 12px 26px rgba(0, 0, 0, 0.65);
}

.hero-alt p {
  margin: 0 auto 18px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75), 0 10px 22px rgba(0, 0, 0, 0.55);
}

.primary-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background 220ms ease, color var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(196, 0, 1, 0.28);
}

.btn-secondary {
  background: #fbf4f3;
  color: var(--accent);
  border-color: #e7bcbc;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}


.section p { margin: 0 0 12px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.policy-links {
  display: grid;
  gap: 16px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  justify-content: center;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
  min-height: 48px;
  width: 100%;
}

.policy-link::before {
  content: none;
}

.policy-link:hover {
  color: var(--accent);
  border-color: rgba(196, 0, 1, 0.35);
  box-shadow: 0 16px 40px rgba(196, 0, 1, 0.12);
  transform: translateY(-2px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 16px;
  width: min(680px, 92vw);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal h3 {
  margin: 0 36px 10px 0;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: 0.04em;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
  margin: 0;
  text-align: center;
  align-items: center;
}

.stats-panel {
  align-items: start;
}

.stats-copy {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.stats-strip {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 22px;
  margin-bottom: 18px;
  position: relative;
}

.stats-strip::after {
  content: none;
}


.stat-value {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  margin: 0;
}


.stat-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  position: relative;
  padding-bottom: 6px;
}

.stat-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 0, 1, 0.8), rgba(196, 0, 1, 0.2));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: 0.08em;
  font-weight: 800;
}

.access-panel {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.access-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: 0.08em;
  font-weight: 800;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.muted { color: #6b6b6b; }



.feature-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  opacity: 0;
  animation: fadeInUp 800ms ease forwards;
}

.feature-card {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 10%, rgba(196, 0, 1, 0.08), transparent 40%),
              radial-gradient(circle at 80% 90%, rgba(47, 58, 68, 0.05), transparent 36%);
  pointer-events: none;
}

.feature-copy {
  display: grid;
  gap: 10px;
}

.feature-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 800;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
}

.feature-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 0, 1, 0.8), rgba(196, 0, 1, 0.2));
}

.sublede {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(65, 64, 66, 0.9);
}


.feature-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: grid;
  gap: 6px;
}

.feature-points li {
  position: relative;
  padding-left: 16px;
}

.feature-points li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.feature-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-image.fixed {
  height: 340px;
}

.feature-image.center {
  margin: 0 auto;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(196, 0, 1, 0.12);
}

.hero-alt.cottage-hero::after {
  -webkit-mask-image: radial-gradient(circle, #000 90%, transparent 100%);
  mask-image: radial-gradient(circle, #000 90%, transparent 100%);
}

.feature-image:hover img { transform: scale(1.03); }



footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px 34px;
  background: var(--slate);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #ffffff;
  text-align: center;
}

footer a { color: var(--accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gallery-4x3 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}

.gallery-4x3 figure {
  aspect-ratio: 4 / 3;
}

.gallery-4x3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-2x2 figure {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .gallery-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-4x3 figure { aspect-ratio: 4 / 3; }
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 14, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-backdrop.active { display: flex; }

.lightbox-frame {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms ease;
}

.lightbox-close {
  top: -12px;
  right: -12px;
  transform: none;
}

.lightbox-prev { left: -54px; }
.lightbox-next { right: -54px; }

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 720px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 8px; right: 8px; }
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery figure:hover img { transform: scale(1.04); }


.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.contact-item:hover { transform: translateY(-3px); }

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(196, 0, 1, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-weight: 700;
}

.booking-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.form-status {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(196, 0, 1, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 20px;
}

.form-status.error {
  background: rgba(196, 0, 1, 0.12);
  border-color: rgba(196, 0, 1, 0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 16px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(196, 0, 1, 0.35);
  border-color: rgba(196, 0, 1, 0.6);
}

.form-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.form-note {
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}





@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .logo-floating { width: 170px; height: 170px; top: 18%; }
  .hero h1 { margin-top: 120px; }
}

@media (max-width: 720px) {
  .navbar { flex-direction: row; align-items: center; }
  .nav-toggle { display: inline-flex; margin-left: auto; z-index: 2001; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 22px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
    width: min(260px, 90vw);
    z-index: 2000;
  }
  .nav-links a { width: 100%; }
  .nav-links.open { display: flex; }
  .logo-floating { width: 160px; height: 160px; top: 12%; }
  .hero { min-height: 70vh; padding: 0 0 8vh; }
  .hero-inner { padding: 20px 18px 0; margin-top: 110px; }
  .hero h1 { margin: 14px auto 10px; }
  .section { padding: 28px 18px; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel .feature-image { order: -1; }
}
