:root {
  --cream: #f6f0e6;
  --ivory: #fbf7ef;
  --paper: #ffffff;
  --ink: #2a2723;
  --ink-soft: #4a463f;
  --muted: #7a7367;
  --line: #e3dccf;
  --moss: #475a47;
  --moss-dark: #2c3a2d;
  --moss-soft: #6d8a6e;
  --rust: #b6664a;
  --gold: #c9a85b;
  --shadow-sm: 0 1px 2px rgba(42, 39, 35, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 39, 35, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 39, 35, 0.18);
  --radius: 6px;
  --radius-lg: 14px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--moss-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--rust);
}

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

.serif {
  font-family: var(--serif);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 1rem;
  display: inline-block;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(227, 220, 207, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--moss-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--moss-dark);
  background: var(--ivory);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--moss-dark);
  transition: width 0.3s ease;
}

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

.nav-cta {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--moss-dark);
  border-radius: 999px;
  color: var(--moss-dark);
  background: transparent;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--moss-dark);
  color: var(--ivory);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 18, 0.15) 0%, rgba(20, 22, 18, 0.40) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--ivory);
  animation: rise 1s ease-out 0.1s both;
  padding: 2.75rem 3rem;
  border-radius: 18px;
  background: rgba(20, 22, 18, 0.30);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(251, 247, 239, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-style: italic;
}

.hero h1 .accent {
  font-style: normal;
  color: var(--gold);
}

.hero p.lede {
  font-size: 1.2rem;
  color: rgba(251, 247, 239, 0.92);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--ivory);
  color: var(--moss-dark);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border: 1px solid rgba(251, 247, 239, 0.5);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(251, 247, 239, 0.08);
  color: var(--ivory);
}

.btn-solid {
  background: var(--moss-dark);
  color: var(--ivory);
}

.btn-solid:hover {
  background: var(--moss);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.7);
  font-weight: 500;
}

.hero-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* Sections */
section {
  padding: 7rem 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* Story */
.story {
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

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

.story-text .signature {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--moss-dark);
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--moss-dark);
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.25;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.story-badge strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ivory);
  font-style: normal;
  font-weight: 600;
}

/* Features */
.features {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--moss-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}

.feature h3 {
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.98rem;
}

/* The Cottage gallery */
.cottage {
  background: var(--ivory);
}

.cottage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cottage-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.cottage-images .img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cottage-images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

.cottage-images .img:hover img {
  transform: scale(1.06);
}

.cottage-images .img.tall {
  grid-row: span 2;
  height: 100%;
}

.cottage-list {
  list-style: none;
  margin-top: 2rem;
}

.cottage-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.cottage-list li::before {
  content: '✦';
  color: var(--rust);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.cottage-list li:last-child {
  border-bottom: none;
}

/* Island */
.island {
  background: var(--moss-dark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.island::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://media.freewave.dev/u6n2q9/images/unsplash-58c9dc02cfc4.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.island .container {
  position: relative;
  z-index: 1;
}

.island h2 {
  color: var(--ivory);
}

.island .eyebrow {
  color: var(--gold);
}

.island .section-head p {
  color: rgba(251, 247, 239, 0.82);
}

.island-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.island-card {
  border-top: 1px solid rgba(251, 247, 239, 0.18);
  padding-top: 1.5rem;
}

.island-card .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.island-card h3 {
  color: var(--ivory);
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.island-card p {
  color: rgba(251, 247, 239, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Quote */
.quote {
  background: var(--cream);
  padding: 6rem 0;
  text-align: center;
}

.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 840px;
  margin: 0 auto 1.5rem;
}

.quote blockquote::before {
  content: '“';
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}

/* Inquire form */
.inquire {
  background: var(--ivory);
}

.inquire-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.inquire-info h2 {
  margin-bottom: 1.5rem;
}

.inquire-info p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  margin-top: 2.5rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-list .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-list .value {
  color: var(--ink);
  font-weight: 500;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--moss-dark);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(71, 90, 71, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
}

.form-card button[type=submit] {
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
}

.form-fine {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.25rem;
}

/* Footer */
.footer {
  background: var(--moss-dark);
  color: rgba(251, 247, 239, 0.78);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer .brand {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.footer .brand-mark {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.footer p {
  color: rgba(251, 247, 239, 0.72);
  font-size: 0.94rem;
  max-width: 320px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: rgba(251, 247, 239, 0.78);
  font-size: 0.94rem;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 239, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(251, 247, 239, 0.55);
}

.footer-bottom a {
  color: rgba(251, 247, 239, 0.7);
}

/* Animations */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.story-text,
.features .feature,
.cottage-grid > *,
.island-card,
.inquire-grid > * {
  animation: rise 1.1s ease-out both;
}

.features .feature:nth-child(2) { animation-delay: 0.12s; }
.features .feature:nth-child(3) { animation-delay: 0.24s; }
.island-card:nth-child(2) { animation-delay: 0.1s; }
.island-card:nth-child(3) { animation-delay: 0.2s; }
.island-card:nth-child(4) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .story-grid,
  .cottage-grid,
  .inquire-grid { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .island-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 5rem 0; }
  .form-card { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .hero { padding: 7rem 0 6rem; min-height: auto; }
  .hero-inner { padding: 2rem 1.5rem; border-radius: 14px; }
  .story-badge { width: 100px; height: 100px; font-size: 0.9rem; top: -1rem; right: -1rem; }
  .story-badge strong { font-size: 1.3rem; }
}

@media (max-width: 520px) {
  .island-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .nav { padding: 1rem 0; }
  .brand { font-size: 1.15rem; }
}
