/*
 * CARNGOWIL FARMHOUSE — STYLESHEET
 * Cross-browser: Chrome, Firefox, Safari (macOS+iOS), Edge, Samsung Internet
 * NO font: shorthand with CSS variables (breaks Safari)
 * All webkit prefixes included for older Safari/iOS
 */

:root {
  --g: #2D4A3E;
  --sage: #6B8E7B;
  --cream: #F5F0E8;
  --warm: #A06E3B;
  --body: #3A3A38;
  --lt: #FAFAF7;
  --mt: #908A82;
  --bdr: #D8D3CB;
  --dk: #1E3329;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; background: var(--lt); overflow-x: hidden; font-family: 'Cormorant Garamond', Georgia, serif; color: var(--body); font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--sage); color: #fff; }
:focus-visible { outline: 2px solid var(--warm); outline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; font-family: inherit; }

/* REVEAL */
.rv { opacity: 0; -webkit-transform: translateY(28px); transform: translateY(28px); -webkit-transition: opacity .7s cubic-bezier(.16,1,.3,1), -webkit-transform .7s cubic-bezier(.16,1,.3,1); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

/* UTILITY */
.sec { padding: 120px 28px; }
.ctr { max-width: 1120px; margin: 0 auto; }
.ctr-lg { max-width: 1240px; margin: 0 auto; }
.ctr-sm { max-width: 880px; margin: 0 auto; }
.sp-48 { height: 48px; }
.sec-lt { background: var(--lt); }
.sec-dk { background: var(--g); }
.sec-cream { background: var(--cream); }

.label { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 11px; font-weight: 500; line-height: 1; letter-spacing: 4px; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; }
.label-c { text-align: center; }

.sec-h { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 500; line-height: 1.15; color: var(--g); text-align: center; margin: 0 0 20px; }
.sec-h-w { color: #fff; }

.sec-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--mt); text-align: center; max-width: 540px; margin: 0 auto 56px; }

.body-lg { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 400; line-height: 1.8; color: var(--body); margin-bottom: 20px; }
.body-sm { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--mt); }

/* BUTTONS */
.btn { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 500; line-height: 1; letter-spacing: 3px; text-transform: uppercase; padding: 18px 44px; cursor: pointer; border: none; display: inline-block; text-align: center; -webkit-transition: all .35s cubic-bezier(.16,1,.3,1); transition: all .35s cubic-bezier(.16,1,.3,1); }
.btn-warm { background: var(--warm); color: #fff; }
.btn-warm:hover { background: #8B5E32; -webkit-transform: translateY(-2px); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,110,59,.25); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-full { width: 100%; }

/* NAV */
.nv { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; -webkit-transition: all .5s cubic-bezier(.16,1,.3,1); transition: all .5s cubic-bezier(.16,1,.3,1); }
.nv.sc { background: rgba(250,250,247,.96); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(216,211,203,.5); padding: 14px 0; }
.nv-in { max-width: 1240px; margin: 0 auto; padding: 0 28px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }
.nv-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 500; letter-spacing: 1.5px; color: #fff; text-decoration: none; -webkit-transition: color .4s; transition: color .4s; }
.nv.sc .nv-logo { color: var(--g); }
.nv-lks { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; gap: 36px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }
.nv-lk { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; -webkit-transition: all .3s; transition: all .3s; }
.nv.sc .nv-lk { color: var(--g); }
.nv-lk:hover, .nv-lk.ac { border-bottom-color: var(--warm); }
body.pg .nv .nv-logo { color: var(--g); }
body.pg .nv .nv-lk { color: var(--g); }
body.pg .nv .ham { color: var(--g); }

/* HAMBURGER */
.ham { display: none; background: none; border: none; width: 28px; height: 20px; position: relative; padding: 0; color: #fff; }
.ham span, .ham span::before, .ham span::after { display: block; width: 28px; height: 1.5px; background: currentColor; position: absolute; -webkit-transition: all .35s cubic-bezier(.16,1,.3,1); transition: all .35s cubic-bezier(.16,1,.3,1); }
.ham span { top: 9px; }
.ham span::before { content: ''; top: -7px; }
.ham span::after { content: ''; top: 7px; }
.ham.x span { background: transparent; }
.ham.x span::before { -webkit-transform: rotate(45deg); transform: rotate(45deg); top: 0; }
.ham.x span::after { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); top: 0; }
.nv.sc .ham { color: var(--g); }

/* MOBILE MENU */
.mob { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: var(--g); display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; opacity: 0; pointer-events: none; -webkit-transition: opacity .4s; transition: opacity .4s; }
.mob.open { opacity: 1; pointer-events: auto; }
.mob-lk { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 400; color: #fff; background: none; border: none; padding: 16px 0; display: block; text-decoration: none; text-align: center; letter-spacing: 1px; opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); -webkit-transition: opacity .4s, -webkit-transform .4s; transition: opacity .4s, transform .4s; }
.mob.open .mob-lk { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

@media (max-width: 768px) {
  .ham { display: block; }
  .nv-lks { display: none; }
  .sec { padding: 80px 20px; }
}

/* PAGE HERO */
.page-hero { padding: 140px 28px 80px; text-align: center; position: relative; }
.page-hero-dk { background: var(--g); }
.page-hero-img { background-size: cover; background-position: center; min-height: 360px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; }
.page-hero-ov { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(30,51,41,.7); }
.page-hero-t { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; font-weight: 500; line-height: 1.1; color: #fff; margin: 0 0 16px; position: relative; z-index: 1; }
.page-hero-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 19px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.7); margin: 0; position: relative; z-index: 1; }

/* HERO */
.hero { height: 100vh; min-height: 640px; position: relative; overflow: hidden; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; background: var(--dk); }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; opacity: 0; -webkit-transition: opacity 1.2s ease; transition: opacity 1.2s ease; -webkit-transform: scale(1.05); transform: scale(1.05); }
.hero-bg.loaded { opacity: .4; }
.hero-ov { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-linear-gradient(285deg, rgba(0,0,0,.15), rgba(30,51,41,.65)); background: linear-gradient(175deg, rgba(0,0,0,.15), rgba(30,51,41,.65)); }
.hero-grain { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: .04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-ct { position: relative; text-align: center; max-width: 780px; padding: 0 28px; }
.hero-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 500; line-height: 1; letter-spacing: 5px; text-transform: uppercase; color: var(--sage); margin-bottom: 32px; -webkit-animation: fadeUp .8s .3s both; animation: fadeUp .8s .3s both; }
.hero-t { font-family: 'Playfair Display', Georgia, serif; font-size: 72px; font-weight: 400; line-height: 1.05; color: #fff; margin: 0; -webkit-animation: fadeUp .8s .5s both; animation: fadeUp .8s .5s both; }
.hero-line { width: 48px; height: 1px; background: var(--warm); margin: 28px auto; -webkit-animation: fadeUp .8s .7s both; animation: fadeUp .8s .7s both; }
.hero-tl { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.75); margin: 0 0 44px; -webkit-animation: fadeUp .8s .8s both; animation: fadeUp .8s .8s both; }
.hero-btns { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; gap: 16px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-animation: fadeUp .8s 1s both; animation: fadeUp .8s 1s both; }

@-webkit-keyframes fadeUp { from { opacity: 0; -webkit-transform: translateY(24px); } to { opacity: 1; -webkit-transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) { .hero-t { font-size: 48px; } .hero-tl { font-size: 17px; } .page-hero-t { font-size: 36px; } .page-hero-sub { font-size: 16px; } .sec-h { font-size: 28px; } }
@media (max-width: 480px) { .hero-btns { -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: center; align-items: center; } .hero-btns .btn { width: 100%; max-width: 280px; } .hero-t { font-size: 40px; } }

/* ABOUT */
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; -webkit-align-items: center; align-items: center; }
.ab-h { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.2; color: var(--g); margin: 0 0 28px; }
.ab-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ab-img-main { grid-row: 1 / 3; overflow: hidden; min-height: 320px; }
.ab-img-sm { overflow: hidden; min-height: 156px; }
.ab-imgs img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .6s cubic-bezier(.16,1,.3,1); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.ab-imgs img:hover { -webkit-transform: scale(1.03); transform: scale(1.03); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin-top: 88px; }
.feat-card { padding: 20px 24px; background: #fff; border: 1px solid var(--bdr); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 500; color: var(--body); display: -webkit-box; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 14px; -webkit-transition: all .3s; transition: all .3s; }
.feat-card:hover { border-color: var(--sage); -webkit-transform: translateY(-2px); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); -webkit-flex-shrink: 0; flex-shrink: 0; }
@media (max-width: 900px) { .ab-grid { grid-template-columns: 1fr; gap: 48px; } .ab-imgs { -webkit-order: -1; order: -1; } .ab-h { font-size: 30px; } }
@media (max-width: 500px) { .feat-grid { grid-template-columns: 1fr; } }

/* GALLERY */
.gal-fl { display: -webkit-flex; display: flex; gap: 28px; -webkit-justify-content: center; justify-content: center; margin-bottom: 44px; -webkit-flex-wrap: wrap; flex-wrap: wrap; }
.gal-fb { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; border: none; background: none; padding: 0 0 8px; border-bottom: 2px solid transparent; color: rgba(255,255,255,.4); cursor: pointer; -webkit-transition: all .3s; transition: all .3s; }
.gal-fb.ac { color: #fff; border-bottom-color: var(--warm); }
.gal-fb:hover { color: #fff; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; padding-bottom: 75%; height: 0; }
.gal-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .7s cubic-bezier(.16,1,.3,1); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.gal-item:hover img { -webkit-transform: scale(1.08); transform: scale(1.08); }
.gal-ov { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(45,74,62,.5); opacity: 0; -webkit-transition: opacity .4s; transition: opacity .4s; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; z-index: 2; }
.gal-item:hover .gal-ov { opacity: 1; }
.gal-icon { width: 48px; height: 48px; border: 1.5px solid #fff; border-radius: 50%; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; color: #fff; font-size: 24px; -webkit-transform: scale(.7); transform: scale(.7); -webkit-transition: -webkit-transform .4s; transition: transform .4s; }
.gal-item:hover .gal-icon { -webkit-transform: scale(1); transform: scale(1); }
.gal-cap { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 48px 20px 16px; background: -webkit-linear-gradient(top, transparent, rgba(0,0,0,.65)); background: linear-gradient(to bottom, transparent, rgba(0,0,0,.65)); }
.gal-cap p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; font-weight: 400; color: #fff; margin: 0; letter-spacing: .5px; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .gal-grid { grid-template-columns: 1fr; } }

/* LIGHTBOX */
.lb { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 2000; background: rgba(0,0,0,.94); display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; -webkit-transition: opacity .3s; transition: opacity .3s; }
.lb.open { opacity: 1; pointer-events: auto; }
.lb-inner { max-width: 90vw; -webkit-transform: scale(.95); transform: scale(.95); -webkit-transition: -webkit-transform .4s cubic-bezier(.16,1,.3,1); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.lb.open .lb-inner { -webkit-transform: scale(1); transform: scale(1); }
.lb img { max-width: 100%; max-height: 82vh; -o-object-fit: contain; object-fit: contain; display: block; margin: 0 auto; }
.lb-cap { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; color: rgba(255,255,255,.6); text-align: center; margin-top: 20px; }
.lb-x { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,.6); font-size: 36px; cursor: pointer; line-height: 1; padding: 8px; z-index: 1; -webkit-transition: color .3s; transition: color .3s; }
.lb-x:hover { color: #fff; }

/* ROOMS */
.rm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rm-card { background: #fff; border: 1px solid var(--bdr); overflow: hidden; -webkit-transition: all .4s cubic-bezier(.16,1,.3,1); transition: all .4s cubic-bezier(.16,1,.3,1); }
.rm-card:hover { -webkit-transform: translateY(-6px); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.06); border-color: var(--sage); }
.rm-img { overflow: hidden; height: 240px; }
.rm-img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .6s; transition: transform .6s; }
.rm-card:hover .rm-img img { -webkit-transform: scale(1.06); transform: scale(1.06); }
.rm-body { padding: 28px 24px; }
.rm-icon { font-size: 22px; display: block; margin-bottom: 10px; }
.rm-name { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 500; color: var(--g); margin: 0 0 12px; }
.rm-desc { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--mt); margin: 0; }
.heart-box { margin-top: 64px; padding: 48px; background: var(--cream); border: 1px solid var(--bdr); }
.heart-box h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 500; color: var(--g); margin: 0 0 20px; }
.heart-box p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--body); max-width: 700px; }
@media (max-width: 700px) { .rm-grid { grid-template-columns: 1fr; } .heart-box { padding: 32px 24px; } }

/* INCLUDED */
.incl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.incl-item { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--body); padding: 20px; background: var(--lt); border: 1px solid var(--bdr); -webkit-transition: all .3s; transition: all .3s; }
.incl-item:hover { border-color: var(--sage); -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.incl-item strong { color: var(--g); display: block; margin-bottom: 4px; font-size: 16px; }

/* WALKS */
.wk-item { border-bottom: 1px solid var(--bdr); padding: 28px 0; cursor: pointer; -webkit-transition: background .3s; transition: background .3s; }
.wk-item:hover { background: rgba(107,142,123,.04); }
.wk-hd { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-items: center; align-items: center; gap: 16px; }
.wk-name { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 400; color: var(--g); margin: 0; -webkit-transition: color .3s; transition: color .3s; }
.wk-item:hover .wk-name { color: var(--warm); }
.wk-meta { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 16px; -webkit-flex-shrink: 0; flex-shrink: 0; }
.wk-time { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 500; color: var(--warm); letter-spacing: 1px; }
.wk-plus { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 300; line-height: 1; color: var(--sage); display: inline-block; -webkit-transition: -webkit-transform .4s cubic-bezier(.16,1,.3,1); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.wk-plus.open { -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.wk-body { max-height: 0; overflow: hidden; -webkit-transition: max-height .5s cubic-bezier(.16,1,.3,1); transition: max-height .5s cubic-bezier(.16,1,.3,1); }
.wk-body.open { max-height: 300px; }
.wk-body p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--body); padding: 16px 48px 0 0; }
.wk-imgwrap { margin-top: 56px; overflow: hidden; }
.wk-img { width: 100%; height: 340px; -o-object-fit: cover; object-fit: cover; -webkit-transition: -webkit-transform .8s cubic-bezier(.16,1,.3,1); transition: transform .8s cubic-bezier(.16,1,.3,1); }
.wk-imgwrap:hover .wk-img { -webkit-transform: scale(1.03); transform: scale(1.03); }
.wk-imgcap { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 400; color: var(--mt); text-align: center; margin-top: 12px; }
@media (max-width: 500px) { .wk-body p { padding-right: 0; } .wk-img { height: 220px; } .wk-name { font-size: 17px; } }

/* BEACHES */
.beach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.beach-card { background: var(--lt); border: 1px solid var(--bdr); padding: 28px; -webkit-transition: all .3s; transition: all .3s; }
.beach-card:hover { border-color: var(--sage); -webkit-transform: translateY(-3px); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.beach-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 500; color: var(--g); margin: 0 0 12px; }
.beach-card p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--body); margin: 0 0 12px; }
.beach-dist { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 500; color: var(--warm); letter-spacing: 1px; text-transform: uppercase; }

/* EATING / PLACES */
.eat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.eat-card { padding: 24px; border-bottom: 2px solid var(--bdr); -webkit-transition: border-color .3s; transition: border-color .3s; }
.eat-card:hover { border-color: var(--warm); }
.eat-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 500; color: var(--g); margin: 0 0 8px; }
.eat-card p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--body); margin: 0; }

/* REVIEWS */
.rev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rev-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 36px; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-transition: all .4s; transition: all .4s; }
.rev-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); -webkit-transform: translateY(-4px); transform: translateY(-4px); }
.rev-stars { font-size: 14px; color: var(--warm); letter-spacing: 3px; margin-bottom: 20px; }
.rev-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-weight: 400; font-style: italic; line-height: 1.7; color: rgba(255,255,255,.82); margin: 0 0 24px; -webkit-flex: 1; flex: 1; }
.rev-foot { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-items: baseline; align-items: baseline; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
.rev-author { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 600; color: var(--sage); letter-spacing: 1px; font-style: normal; }
.rev-date { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.35); }
@media (max-width: 700px) { .rev-grid { grid-template-columns: 1fr; } }

/* CALENDAR */
.cal-box { max-width: 480px; margin: 0 auto; background: #fff; border: 1px solid var(--bdr); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.03); }
.cal-nav { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-items: center; align-items: center; margin-bottom: 28px; }
.cal-arr { background: none; border: 1px solid var(--bdr); width: 36px; height: 36px; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 20px; color: var(--g); line-height: 1; -webkit-transition: all .3s; transition: all .3s; }
.cal-arr:hover { border-color: var(--sage); background: var(--cream); }
.cal-month { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 500; color: var(--g); margin: 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-hd { text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 11px; font-weight: 500; color: var(--mt); padding: 8px 0; letter-spacing: 2px; }
.cal-d { text-align: center; padding: 11px 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; color: var(--body); border: 1px solid var(--bdr); -webkit-transition: all .2s; transition: all .2s; cursor: pointer; }
.cal-d:hover:not(.cal-bk):not(.cal-empty) { background: rgba(107,142,123,.1); border-color: var(--sage); }
.cal-empty { border: none; cursor: default; color: transparent; }
.cal-bk { color: var(--bdr); background: var(--cream); text-decoration: line-through; cursor: default; }
.cal-leg { display: -webkit-flex; display: flex; gap: 28px; -webkit-justify-content: center; justify-content: center; margin-top: 24px; }
.cal-leg span { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 500; color: var(--mt); display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 8px; }
.cal-sw { width: 14px; height: 14px; border: 1px solid var(--bdr); display: inline-block; }
.cal-sw-av { background: #fff; }
.cal-sw-bk { background: var(--cream); }
.cal-note { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; font-weight: 400; font-style: italic; color: var(--mt); text-align: center; margin-top: 28px; }
@media (max-width: 500px) { .cal-box { padding: 24px 16px; } }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 700px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid var(--bdr); padding: 32px 24px; text-align: center; -webkit-transition: all .3s; transition: all .3s; }
.price-card:hover { border-color: var(--sage); -webkit-transform: translateY(-3px); transform: translateY(-3px); }
.price-card-peak { border-color: var(--warm); background: rgba(160,110,59,.04); }
.price-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 500; color: var(--g); margin: 0 0 8px; }
.price-card .price-range { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 400; color: var(--mt); margin: 0 0 16px; }
.price-card .price-from { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 500; color: var(--g); margin: 0; }
.price-card .price-from span { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; font-weight: 400; color: var(--mt); }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }

/* BOOKING FORM */
.bk-ctr { max-width: 680px; margin: 0 auto; }
.bk-form { background: #fff; border: 1px solid var(--bdr); padding: 44px; box-shadow: 0 4px 24px rgba(0,0,0,.03); }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.bk-field { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; }
.bk-full { margin-bottom: 28px; }
.bk-label { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 11px; font-weight: 500; line-height: 1; color: var(--mt); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.bk-req { color: var(--warm); }
.bk-input, .bk-textarea { width: 100%; padding: 14px 16px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; color: var(--body); border: 1px solid var(--bdr); background: #fff; -webkit-transition: border-color .3s, box-shadow .3s; transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0; }
.bk-input:focus, .bk-textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(107,142,123,.1); outline: none; }
.bk-textarea { height: 110px; resize: vertical; }
.bk-err { border-color: #C44B3F !important; }
.bk-errtxt { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 400; color: #C44B3F; margin-top: 4px; display: none; }
.bk-errtxt.show { display: block; }
.bk-note { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 400; color: var(--mt); text-align: center; margin-top: 20px; }
.bk-ok { text-align: center; padding: 72px 40px; background: #fff; border: 1px solid var(--bdr); display: none; }
.bk-ok.show { display: block; }
.bk-ok-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); color: #fff; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; }
.bk-ok h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; font-weight: 500; color: var(--g); margin: 0 0 16px; }
.bk-ok p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--body); max-width: 440px; margin: 0 auto; }
@media (max-width: 600px) { .bk-grid { grid-template-columns: 1fr; } .bk-form { padding: 28px 20px; } }

/* MAP */
.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; -webkit-align-items: center; align-items: center; }
.mp-h { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 400; color: var(--g); margin: 0 0 24px; }
.mp-near { margin-top: 28px; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 12px; }
.mp-nr { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 500; color: var(--body); display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 12px; }
.mp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); -webkit-flex-shrink: 0; flex-shrink: 0; }
.mp-iframe { width: 100%; height: 420px; border: 1px solid var(--bdr); }
.mp-cap { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 400; color: var(--mt); text-align: center; margin-top: 10px; }
@media (max-width: 800px) { .mp-grid { grid-template-columns: 1fr; } .mp-iframe { height: 300px; } }

/* FLOORPLAN & VIDEO */
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.fp-card { background: #fff; border: 1px solid var(--bdr); padding: 32px; text-align: center; }
.fp-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 500; color: var(--g); margin: 0 0 20px; }
.fp-placeholder { padding: 60px 24px; background: var(--cream); border: 1px dashed var(--bdr); color: var(--mt); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; }
.fp-placeholder p { margin: 8px 0; }
.fp-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.fp-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 700px) { .fp-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.ftr { background: var(--dk); padding: 72px 28px 48px; }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.ftr-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; color: #fff; margin: 0 0 20px; }
.ftr-hd { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 11px; font-weight: 500; color: var(--sage); letter-spacing: 3px; text-transform: uppercase; margin: 0 0 20px; }
.ftr-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,.5); }
.ftr-links { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 10px; }
.ftr-link { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-weight: 400; color: rgba(255,255,255,.5); text-decoration: none; -webkit-transition: color .3s; transition: color .3s; }
.ftr-link:hover { color: var(--sage); }
.ftr-bar { max-width: 1120px; margin: 48px auto 0; border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 16px; }
.ftr-bar p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.3); margin: 0; }
.ftr-bar a { color: var(--sage); text-decoration: none; -webkit-transition: color .3s; transition: color .3s; }
.ftr-bar a:hover { color: #fff; }
@media (max-width: 700px) { .ftr-grid { grid-template-columns: 1fr; } .ftr { padding: 56px 20px 40px; } }

/* SCROLL TO TOP */
.stt { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--g); color: #fff; border: none; font-size: 18px; z-index: 900; opacity: 0; pointer-events: none; -webkit-transform: translateY(12px); transform: translateY(12px); -webkit-transition: all .4s; transition: all .4s; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.stt.show { opacity: 1; pointer-events: auto; -webkit-transform: translateY(0); transform: translateY(0); }
.stt:hover { background: var(--warm); }
@media (max-width: 768px) { .stt { bottom: 20px; right: 20px; width: 40px; height: 40px; } }

/* GRAIN */
.grain { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 9999; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
