*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream:     #faf7f2;
    --warm:      #f0e9db;
    --parchment: #e8dece;
    --ink:       #1c1a16;
    --ink-soft:  #2e2b25;
    --gold:      #b8913a;
    --gold-light:#d4aa5a;
    --gold-pale: #f0e0b0;
    --forest:    #2d5a3d;
    --text-muted:#7a7060;
    --serif:     'Cormorant Garamond', Georgia, serif;
    --mono:      'Space Mono', monospace;
    --radius:    12px;
    --ease:      cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img { max-width: 100%; display: block; }

/* ── SCROLL TO TOP ── */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--cream);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(184,145,58,0.15);
}
#scrollTopBtn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background: var(--gold); color: var(--cream); }

/* ── CURSOR ── */
#cursor {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}
#cursor-ring {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.55;
    transition: all 0.12s ease;
}

/* ── SIDEBAR ── */
.sidebar {
    position: fixed;
    top: -100%;
    height: 60vh;
    width: 100vw;
    padding: 5rem 1rem;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: top 0.5s var(--ease);
    border-bottom: 1px solid var(--parchment);
}
.sidebar.open { 
    top: 0; 
}
.sidebar-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem;
    align-items: center; 
}
.sidebar-nav a {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar-nav a:hover { 
    color: var(--gold); 
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 12px;
    left: 16px;
    right: 16px;
    border-radius: 50px;
    background: rgba(250,247,242,0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(184,145,58,0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.8rem;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(28,26,22,0.06);
}
.logo { 
    width: 40px; 
    height: 40px; 
}
.logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    filter: drop-shadow(0 5px 1px #000);
}
nav { 
    display: flex; 
    gap: 2.2rem; 
    align-items: center; 
}
nav a {
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}
nav a:hover { 
    color: var(--gold); 
}
nav a:hover::after { 
    width: 100%; 
}

/* CONTACT BUTTON */
.contacts-btn {
  border: none;
  border-radius: 20px;
  display: block;
  position: relative;
  padding: 0.3rem 1.4rem;
  font-size: 24px;
  backdrop-filter: blur(1rem);
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000;
  z-index: 1;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  background: var(--gold);
  transition: .3s ease;
}
.contacts-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}
.contacts-btn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 10%;
  height: 500%;
  background: #fed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s ease;
}
.contacts-btn:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: transparent;
}
.contacts-btn:hover {
  color: white;
}
.contacts-btn:active{  
  color: #000;
}
.contacts-btn:active span::before {
  background: #fed;
}


/* MENU BUTTON */
.menu-btn{
    position: relative;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 0 .3rem;
}
.menu-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #00000065;
    backdrop-filter: blur(20px);
    color: #fed;
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1px solid #333;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
.menu-btn:hover::after {
    opacity: 1;
}
.menu-btn div{
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: .3s ease;
}
.menu-btn:hover div{
    width: 50%;

}
/* ── HERO ── */
.hero {
    width: 100%;
    min-height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 7rem 1rem 2rem;
    overflow: hidden;
    background: linear-gradient(120deg, #000 40%, #00000041 10%);
}
.hero-overlap-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(to bottom, rgba(250,247,242,0.08) 0%, rgba(28,26,22,0.55) 70%, rgba(28,26,22,0.85) 100%),
        url("https://plus.unsplash.com/premium_photo-1730929081764-cec3f2da402d?q=80&w=1032&auto=format&fit=crop") no-repeat center/cover;
}
.image-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
}
.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250,247,242,0.08) 0%,
        rgba(28,26,22,0.0) 30%,
        rgba(28,26,22,0.65) 80%,
        rgba(28,26,22,1) 100%
    );
}
.image-placeholder { 
    width: 100%; 
    height: 100%; 
}
.image-placeholder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.hero-content {
    position: relative;
    padding: 0 2.5rem 4rem;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}
.hero-eyebrow {
    border-bottom: 2px solid ;
    background: #00000041;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: .2rem .5rem;
    font-family: var(--mono);
    font-size: clamp(.8rem,2vw, 1.2rem );
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0;
    animation: fadeUp 0.9s 0.2s ease forwards;
}
.hero h1 {
    font-size: clamp(2.8rem, 8vw, 7.5rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 1s 0.4s ease forwards;
}
.hero h1 .em {
    color: var(--gold-light);
    -webkit-text-stroke: 0px;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
}
.hero-sub {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: rgba(250,247,242,0.65);
    font-weight: 300;
    max-width: 360px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s 0.6s ease forwards;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.8s ease forwards;
}


/* HERO CTA BUTTONS */

/* hero learn-more button */
button.explore {
    width: 12rem; height: 3rem;
    border-radius: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: 2px solid var(--gold);
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: 2rem;
}
button.explore .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem; height: 3rem;
    background: var(--gold);
    border-radius: 1.625rem;
    opacity: 1;
}
button.explore .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0; bottom: 0;
    margin: auto;
    background: var(--cream);
}
button.explore .circle .icon.arrow {
    left: 0.625rem;
    width: 1.125rem; height: 0.125rem;
    background: none;
}
button.explore .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem; height: 0.625rem;
    border-top: 0.125rem solid var(--cream);
    border-right: 0.125rem solid var(--cream);
    transform: rotate(45deg);
}
button.explore .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.2rem;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}
button:hover .circle { width: 100%; }
button:hover .circle .icon.arrow { background: var(--cream); transform: translate(1rem, 0); }
button:hover .button-text { color: var(--cream); }

/* GHOST BTN */
.ghost-explore{
    width: fit-content; 
    height: 3rem;
    border-radius: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: none;
    vertical-align: middle;
    text-decoration: none;
    background: #00000091;
    backdrop-filter: blur(20px);
    padding: 0 .8rem;
    font-size: 2rem;
    overflow: hidden;
    transition: .3s cubic-bezier(0.65, 0, 0.076, 1);
}
.ghost-explore:hover{
    border-color: var(--gold);
}
.ghost-button-text{
    position: relative;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 0.75rem 0;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(0);
}
.ghost-explore:hover .ghost-button-text{
    transform: translateY(-100%);
}
.ghost-explore::before{
    position: absolute;
    content: "Our Locations";
    transform: translateY(100%);
    padding: 0.75rem 0;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    transition: .3s cubic-bezier(0.65, 0, 0.076, 1);
}
.ghost-explore:hover::before{
    transform: translateY(0);
}


/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.scroll-hint span {
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.5);
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── SECTION SHARED ── */
.section-label {
    background: #00000041;
    border-radius: 12px;
    padding: .2rem .5rem;
    width: fit-content;
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #333;
    display: block;
    margin-bottom: 1rem;
}

/* ─────────────────────────────
   ABOUT / OUR PLACES
───────────────────────────── */
.about {
    width: 100%;
    background: linear-gradient(to top, #000 20%, var(--cream) 70%);
    padding: 4rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--parchment), transparent);
}
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 560px;
    margin-bottom: 1rem;
}
.about h2 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.about h2 em { font-style: italic; color: var(--gold); }
.about-intro {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* PLACES GRID */
.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 3rem 0 2.5rem;
}

/* PLACE CARD — clip-path trapezoid, redesigned */
.place-card {
    position: relative;
    height: clamp(240px, 32vw, 380px);
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(6% 0%, 94% 0%, 100% 100%, 0% 100%);
    transition: clip-path 0.5s var(--ease), box-shadow 0.4s ease;
    box-shadow: 0 8px 40px rgba(28,26,22,0.12);
}
.place-card:nth-child(even) {
    clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%);
    margin-top: 1.5rem;
}
.place-card:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 16px 60px rgba(28,26,22,0.2);
}
.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease), filter 0.5s ease;
    filter: brightness(0.88) saturate(0.9);
}
.place-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.95) saturate(1.05);
}
.place-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28,26,22,0.72) 0%,
        rgba(28,26,22,0.1) 50%,
        transparent 100%
    );
    transition: opacity 0.4s ease;
}
.place-card:hover .place-card-overlay {
    opacity: 0.7;
}
.place-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.6rem 1.8rem;
    transform: translateY(8px);
    transition: transform 0.45s var(--ease);
}
.place-card:hover .place-card-info {
    transform: translateY(0);
}
.place-card-tag {
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.4rem;
}
.place-card-name {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.place-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-family: var(--mono);
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0;
    transition: opacity 0.35s ease 0.05s;
}
.place-card:hover .place-card-arrow { 
    opacity: 1; 
}

/* ─────────────────────────────
   SERVICES SECTION
───────────────────────────── */
.services {
    width: 100%;
    background: var(--warm);
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(184,145,58,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 560px;
    margin-bottom: 1rem;
}
.services-header h2 {
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.services-header h2 em { color: var(--gold); font-style: italic; }
.services-header p {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* Accordion cards */
.services-card {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 6px;
    height: clamp(280px, 36vw, 360px);
    border-radius: var(--radius);
    overflow: hidden;
}
.services-card .inner-card {
    flex: 1;
    height: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: flex 0.55s var(--ease), background 0.4s ease;
    background: var(--ink-soft);
    border: 1px solid rgba(184,145,58,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.services-card .inner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,145,58,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.services-card .inner-card:hover { flex: 4; background: var(--ink); }
.services-card .inner-card:hover::before { opacity: 1; }


/* FIRST CHILD - INNER CARD */
.services-card .inner-card:first-child{
    background: linear-gradient(to bottom, #000, #00000041),url("https://i.pinimg.com/736x/db/f2/4a/dbf24ab58eb981d10ee2bde32c19c0b9.jpg") no-repeat center/cover;
    transition: .55s ease;
}
.services-card .inner-card:first-child:hover{
    background: linear-gradient(to bottom, transparent, transparent),url("https://i.pinimg.com/736x/db/f2/4a/dbf24ab58eb981d10ee2bde32c19c0b9.jpg") no-repeat center/cover;
}
/* SECOND CHILD - INNER CARD */
.services-card .inner-card:nth-child(2){
    background: linear-gradient(to bottom, #000, #00000041),url("https://i.pinimg.com/736x/6a/e1/8a/6ae18a18888b339a9376b12af1b76fa7.jpg") no-repeat center/cover;
    transition: .55s ease;
}
.services-card .inner-card:nth-child(2):hover{
    background: linear-gradient(to bottom, transparent, transparent),url("https://i.pinimg.com/736x/6a/e1/8a/6ae18a18888b339a9376b12af1b76fa7.jpg") no-repeat center/cover;
}
/* THIRD CHILD - INNER CARD */
.services-card .inner-card:nth-child(3){
    background: linear-gradient(to bottom, #000, #00000041),url("https://i.pinimg.com/736x/bf/cf/13/bfcf13ac7efdf3b676aef461927c1e97.jpg") no-repeat center/cover;
    transition: .55s ease;
}
.services-card .inner-card:nth-child(3):hover{
    background: linear-gradient(to bottom, transparent, transparent),url("https://i.pinimg.com/736x/bf/cf/13/bfcf13ac7efdf3b676aef461927c1e97.jpg") no-repeat center/cover;
}
/* FOURTH CHILD - INNER CARD */
.services-card .inner-card:nth-child(4){
    background: linear-gradient(to bottom, #000, #00000041),url("https://i.pinimg.com/1200x/e8/18/28/e81828b0089e04348834ea9a55f1671a.jpg") no-repeat center/cover;
    transition: .55s ease;
}
.services-card .inner-card:nth-child(4):hover{
    background: linear-gradient(to bottom, transparent, transparent),url("https://i.pinimg.com/1200x/e8/18/28/e81828b0089e04348834ea9a55f1671a.jpg") no-repeat center/cover;
}
/* LAST CHILD - INNER CARD */
.services-card .inner-card:last-child{
    background: linear-gradient(to bottom, #000, #00000041),url("https://i.pinimg.com/1200x/26/47/04/26470495ccdb95f5283a5a2ff9f50796.jpg") no-repeat center/cover;
    transition: .55s ease;
}
.services-card .inner-card:last-child:hover{
    background: linear-gradient(to bottom, transparent, transparent),url("https://i.pinimg.com/1200x/26/47/04/26470495ccdb95f5283a5a2ff9f50796.jpg") no-repeat center/cover;
}





.services-card .inner-card span {
    min-width: 12em;
    padding: 0.6em;
    text-align: center;
    transform: rotate(-90deg);
    transition: all 0.5s var(--ease);
    text-transform: uppercase;
    color: var(--gold-light);
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.15em;
}
.services-card .inner-card:hover span { transform: rotate(0); opacity: 0; }

/* service icons */
.srv-icon {
    position: absolute;
    top: 1.2rem; left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.35s ease 0.1s;
}
.services-card p:hover .srv-icon { opacity: 0.4; }

/* Butler row */
.services-extra {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.srv-mini {
    background: var(--cream);
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s;
}
.srv-mini:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(184,145,58,0.1);
}
.srv-mini-num {
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}
.srv-mini-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.2;
}
.srv-mini-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* ─────────────────────────────
   INTERESTS / AMENITIES
───────────────────────────── */
.interests-section {
    width: 100%;
    background: var(--cream);
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}
.interests-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 60%, rgba(184,145,58,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(45,90,61,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.interests-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 520px;
    margin-bottom: 1rem;
}
.interests-header h2 {
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.interests-header h2 em { color: var(--gold); font-style: italic; }
.interests-header p {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}
.interests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 1100px;
}
.interest-card {
    position: relative;
    background: var(--warm);
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    padding: 2.2rem 1.4rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, clip-path 0.4s var(--ease);
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.interest-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(184,145,58,0.1);
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
}
.interest-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(184,145,58,0.05), transparent);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}
.interest-card:hover::before { transform: translateY(0); }

.interest-svg-wrap {
    width: 100px; height: 100px;
    flex-shrink: 0;
    position: relative;
}
.interest-svg-wrap svg {
    width: 100%; height: 100%;
    transition: transform 0.45s ease;
}
.interest-card:hover .interest-svg-wrap svg {
    transform: scale(1.07) rotate(-3deg);
}
.interest-label { text-align: center; }
.interest-num {
    display: block;
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.interest-label h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--ink);
}

/* ─────────────────────────────
   CTA STRIP
───────────────────────────── */
.cta-strip {
    width: 100%;
    background: var(--ink);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,145,58,0.06) 0%, transparent 60%);
}
.cta-strip h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
}
.cta-strip h2 em { color: var(--gold-light); font-style: italic; }
.cta-strip p {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: rgba(250,247,242,0.55);
    max-width: 400px;
    line-height: 1.75;
    font-weight: 300;
}
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 0.75rem 2.4rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost {
    border: 1.5px solid rgba(250,247,242,0.25);
    border-radius: 50px;
    padding: 0.75rem 2.4rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer {
    width: 100%;
    background: var(--ink);
    border-top: 1px solid rgba(184,145,58,0.12);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-logo { width: 36px; height: 36px; object-fit: contain; filter: brightness(1.8) saturate(0.5); }
.footer-mark {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 900px) {
    .interests-grid { grid-template-columns: repeat(2, 1fr); }
    .services-extra { grid-template-columns: 1fr 1fr; }
    header { padding: 0.5rem 1.2rem; }
    nav { gap: 1.4rem; }
}

@media (max-width: 700px) {
    .places-grid { grid-template-columns: 1fr; gap: 1rem; }
    .place-card:nth-child(even) { margin-top: 0; }
    .place-card { height: clamp(220px, 55vw, 320px); }
    .services-card { height: clamp(260px, 50vw, 320px); }
    .services-extra { grid-template-columns: 1fr; }
    .interests-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .interest-svg-wrap { width: 80px; height: 80px; }
    footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 600px) {
    .navs { display: none; }
    .menu-btn { display: flex; }
    .hero-content { padding: 0 1.2rem 3.5rem; gap: 1.8rem; }
    .scroll-hint { right: 1.2rem; }
    .about { padding: 5rem 1.2rem 4rem; }
    .services { padding: 5rem 1.2rem; }
    .interests-section { padding: 5rem 1.2rem; }
    .cta-strip { padding: 4.5rem 1.2rem; }
    
    .interests-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { gap: 1.2rem; }
}
@media (max-width: 480px){
    .hero{
        background: linear-gradient(123deg, #000 50%, #00000041 10%);
    }
    .hero-cta-row{
        flex-direction: column;
    }
    .services-card {
        flex-direction: column;
        height: 700px;
        gap: 4px;
    }
    .services-card .inner-card {
        min-height: 100px;
    }
    .services-card .inner-card:hover { flex: 4; background: var(--ink); }
    .services-card .inner-card span{
        transform: rotate(0);
    }
}