       :root {
    --revival-gold: #bfa07d;
    --revival-gold-light: #c4ae94;
    --revival-beige: #f5f1ed;
    --tabby-teal: #00ffbc;
    --transition-main: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
	}

	body {
		font-family: 'Inter', sans-serif;
		scroll-behavior: smooth;
		-webkit-font-smoothing: antialiased;
		background-color: white;
		color: #1a1a1a;
		overflow-x: hidden;
	}
	
/* --- Modal (WhatsApp popup) --- */
.rc-modal[hidden] { display: none; }

.rc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.rc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
}

.rc-modal__dialog {
    position: relative;
    width: min(560px, calc(100% - 32px));
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 22px 20px 18px;
}

.rc-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
}

.rc-modal__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 30px 8px 0;
    color: #1a1a1a;
    font-size: 28px;
}

.rc-modal__text {
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.rc-modal__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.rc-modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rc-modal__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
}

.rc-modal__input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 14px 14px;
    font-size: 16px;
    outline: none;
    transition: var(--transition-main);
}

.rc-modal__input:focus {
    border-color: rgba(191, 160, 125, 0.8);
    box-shadow: 0 0 0 4px rgba(191, 160, 125, 0.18);
}

.rc-modal__primary {
    box-shadow: none;
}

.rc-modal__secondary {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: rgba(0, 0, 0, 0.75);
    padding: 14px 20px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-main);
}

.rc-modal__secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.rc-modal-open {
    overflow: hidden;
}	
	
	section.py-24.px-4.bg-white.flex.flex-col.items-center {
		background-image: url(../img/icoone-bg.jpg);
	}
	
	section.py-24.px-4.md\:px-12.bg-\[\#FBFBFB\].overflow-hidden {
		background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/about.jpg);
		background-position: center center;
		background-size: cover;
	}
	
	img.w-full.aspect-square.object-cover.rounded-\[40px\].shadow-2xl {
		border-radius: 200px 0 0 0;
	}


        .font-serif-elegant {
            font-family: 'Cormorant Garamond', serif;
        }
        .bg-gold-soft {
            background-color: #C1A98F;
        }
        .text-gold-soft {
            color: #C1A98F;
        }
        .border-gold-soft {
            border-color: #C1A98F;
        }
        .hero-gradient {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
        }
        .btn-gold {
            background-color: #C1A98F;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.75rem;
            transition: all 0.30s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .btn-gold:hover {
            background-color: #b59a7d;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        .btn-gold:active {
            transform: translateY(0);
        }
        .tabby-logo {
            font-family: system-ui, -apple-system, sans-serif;
        }

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* --- ANIMATION SYSTEM (BEM) --- */
.a-reveal {
    opacity: 0;
    transition: opacity 1.2s var(--anim-ease), transform 1.2s var(--anim-ease);
    will-change: opacity, transform;
}

.a-reveal--fade-up {
    transform: translateY(30px);
}

.a-reveal--fade-in {
    transform: translateY(0);
}

.a-reveal--scale-in {
    transform: scale(0.95);
}

.a-reveal--active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger Logic */
.a-reveal--stagger-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--anim-ease), transform 0.8s var(--anim-ease);
}

.a-reveal--stagger-group.a-reveal--active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* --- Components --- */
.whatsapp-btn {
    background-color: var(--revival-gold-light);
    color: white;
    transition: var(--transition-main);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp-btn:hover {
    background-color: #b39b7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(196, 174, 148, 0.3);
}

.tabby-pill {
    background-color: var(--tabby-teal);
    color: black;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: lowercase;
    transition: transform 0.3s ease;
}
.tabby-pill:hover {
    transform: scale(1.1);
}

.h-screen {
	height: 100vh;
}

.parallax {
  background-image: url('../img/hero-bg.jpg');
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 165vh;
}

.parallax-reservation {
  background-image: url('../img/Reservation.jpg');
  --tw-brightness: brightness(0.45);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

/* Added styles for new blocks */
.benefit-card {
    background-color: #d3beab;
    border-radius: 20px;
    padding: 3rem 1.5rem;
    transition: transform 0.4s var(--anim-ease), box-shadow 0.4s var(--anim-ease);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.faq-header {
    padding: 2rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}
.faq-header h4 {
    font-size: 1.5rem;
    font-weight: 300;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--anim-ease);
}
.faq-content div {
    padding: 0 1rem 2rem 1rem;
    color: #4b5563;
    line-height: 1.6;
}
.faq-item.active {
    background-color: #ffffff;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- ICOONE NEW STYLES --- */
.icoone-hero-card {
    position: relative;
    max-width: 450px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.icoone-inset-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 20px;
    border: 12px solid white;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.reservation-btn-large {
    background-color: #C1A98F;
    color: white;
    padding: 1.25rem 3.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.reservation-btn-large:hover {
    background-color: #b39b7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(193, 169, 143, 0.3);
}

@media (max-width: 768px) {
    .icoone-inset-image {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }
}

/* Salmon DNA Custom Styles */
.salmon-dna-card {
    position: relative;
    max-width: 700px;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #fff;
}
.salmon-dna-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: white;
    padding: 20px 15px 30px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    z-index: 20;
}
.revival-circle-logo {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    text-align: center;
    line-height: 1.1;
    backdrop-blur: 4px;
}
.curve-bg {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    position: relative;
    overflow: hidden;
}
.curve-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -10%;
    width: 120%;
    height: 200px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

.object-contain {
    object-fit: contain;
}