/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Primary Palette */
    --terracotta: #c1440e;
    --terracotta-dark: #9a3508;
    --terracotta-light: #d4611f;
    --terracotta-pale: #e8a07a;

    /* Secondary / Background */
    --cream: #faf3e8;
    --cream-dark: #f0e4d0;
    --warm-sand: #e6d5b8;
    --warm-sand-dark: #d4c4a0;

    /* Accent */
    --olive: #5c6b3c;
    --olive-dark: #4a5630;
    --olive-light: #7a8c54;

    /* Neutrals */
    --burnt-sienna: #a0522d;
    --dark-brown: #3d2b1f;
    --deep-brown: #2a1a0f;
    --charcoal: #3a3028;
    --white: #fffdf9;
    --off-white: #fef9f0;

    /* Shadows */
    --shadow-warm: 0 4px 20px rgba(193, 68, 14, 0.12);
    --shadow-warm-lg: 0 8px 40px rgba(193, 68, 14, 0.18);
    --shadow-warm-xl: 0 16px 60px rgba(193, 68, 14, 0.22);
    --shadow-card: 0 6px 30px rgba(154, 53, 8, 0.1);
    --shadow-card-hover: 0 12px 50px rgba(154, 53, 8, 0.2);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Crimson Pro', 'Georgia', serif;
    --font-ui: 'Josefin Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1240px;

    /* Borders */
    --border-rustic: 3px solid var(--warm-sand-dark);
    --border-terracotta: 3px solid var(--terracotta);
    --radius-arch: 50% 50% 0 0 / 30% 30% 0 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--terracotta-dark);
}

ul {
    list-style: none;
}

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

/* ============================================
   NOISE / GRAIN TEXTURE OVERLAYS
   ============================================ */

.hero-grain,
.section-grain,
.footer-grain,
.header-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-brown);
}

.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--terracotta);
}

.section-label-light {
    color: var(--terracotta-pale);
}

.section-label-light::before {
    background: var(--terracotta-pale);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--deep-brown);
}

.section-title-light {
    color: var(--cream);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--burnt-sienna);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(193, 68, 14, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(193, 68, 14, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-service {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
    padding: 12px 28px;
    font-size: 0.78rem;
}

.btn-service:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(250, 243, 232, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(193, 68, 14, 0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    transition: color var(--transition-smooth);
}

.scrolled .logo-name {
    color: var(--deep-brown);
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-pale);
    transition: color var(--transition-smooth);
}

.scrolled .logo-tagline {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cream);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-smooth);
}

.scrolled .nav-link {
    color: var(--charcoal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--terracotta-pale);
}

.scrolled .nav-link:hover {
    color: var(--terracotta);
}

.nav-link-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.scrolled .nav-toggle-bar {
    background: var(--deep-brown);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(42, 26, 15, 0.75) 0%,
        rgba(42, 26, 15, 0.55) 40%,
        rgba(193, 68, 14, 0.35) 70%,
        rgba(42, 26, 15, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInDown 0.8s 0.3s forwards;
}

.badge-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta-pale);
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--terracotta-pale);
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s forwards;
}

.hero-title-line-1 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    animation-delay: 0.5s;
}

.hero-title-line-2 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--terracotta-pale);
    animation-delay: 0.7s;
}

.hero-title-line-3 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    animation-delay: 0.9s;
    text-shadow: 0 4px 30px rgba(193, 68, 14, 0.3);
}

.hero-title-line-4 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    animation-delay: 1.1s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--cream-dark);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.7s 1.3s forwards;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.7s 1.5s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.7s 1.7s forwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.hero-stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--terracotta-pale);
}

.hero-stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-sand);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(250, 243, 232, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.7s 2s forwards;
}

.hero-scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-sand);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta-pale), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   MOSAIC DIVIDER
   ============================================ */

.mosaic-divider {
    display: flex;
    overflow: hidden;
    height: 12px;
}

.mosaic-tile {
    flex: 1;
    min-width: 5%;
}

.mosaic-divider .mosaic-tile:nth-child(1) { background: var(--terracotta); }
.mosaic-divider .mosaic-tile:nth-child(2) { background: var(--warm-sand); }
.mosaic-divider .mosaic-tile:nth-child(3) { background: var(--olive); }
.mosaic-divider .mosaic-tile:nth-child(4) { background: var(--terracotta-pale); }
.mosaic-divider .mosaic-tile:nth-child(5) { background: var(--burnt-sienna); }
.mosaic-divider .mosaic-tile:nth-child(6) { background: var(--cream-dark); }
.mosaic-divider .mosaic-tile:nth-child(7) { background: var(--terracotta-dark); }
.mosaic-divider .mosaic-tile:nth-child(8) { background: var(--olive-light); }
.mosaic-divider .mosaic-tile:nth-child(9) { background: var(--warm-sand-dark); }
.mosaic-divider .mosaic-tile:nth-child(10) { background: var(--terracotta); }
.mosaic-divider .mosaic-tile:nth-child(11) { background: var(--olive); }
.mosaic-divider .mosaic-tile:nth-child(12) { background: var(--terracotta-pale); }
.mosaic-divider .mosaic-tile:nth-child(13) { background: var(--burnt-sienna); }
.mosaic-divider .mosaic-tile:nth-child(14) { background: var(--warm-sand); }
.mosaic-divider .mosaic-tile:nth-child(15) { background: var(--terracotta-dark); }
.mosaic-divider .mosaic-tile:nth-child(16) { background: var(--cream-dark); }
.mosaic-divider .mosaic-tile:nth-child(17) { background: var(--olive-light); }
.mosaic-divider .mosaic-tile:nth-child(18) { background: var(--terracotta); }
.mosaic-divider .mosaic-tile:nth-child(19) { background: var(--warm-sand-dark); }
.mosaic-divider .mosaic-tile:nth-child(20) { background: var(--olive); }

.mosaic-divider-alt .mosaic-tile:nth-child(odd) { background: var(--olive); }
.mosaic-divider-alt .mosaic-tile:nth-child(even) { background: var(--terracotta); }
.mosaic-divider-alt .mosaic-tile:nth-child(3n) { background: var(--warm-sand); }
.mosaic-divider-alt .mosaic-tile:nth-child(5n) { background: var(--burnt-sienna); }

/* ============================================
   ARCH FRAME
   ============================================ */

.arch-frame {
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--warm-sand-dark);
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.arch-frame:hover img {
    transform: scale(1.05);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-frame {
    height: 550px;
    box-shadow: var(--shadow-warm-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--terracotta);
    border-radius: 200px 200px 12px 12px;
    z-index: -1;
    opacity: 0.3;
}

.about-content-col .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.about-text strong {
    color: var(--terracotta);
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--terracotta);
    transition: all var(--transition-smooth);
}

.about-feature:hover {
    box-shadow: var(--shadow-warm);
    transform: translateX(4px);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.about-feature-text strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 2px;
}

.about-feature-text span {
    font-size: 0.9rem;
    color: var(--burnt-sienna);
}

/* ============================================
   TRUST & SECURITY SECTION
   ============================================ */

.trust-section {
    position: relative;
    padding: 80px 0;
    background: var(--deep-brown);
    overflow: hidden;
}

.trust-banner {
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(250, 243, 232, 0.05);
    border: 1px solid rgba(250, 243, 232, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    background: rgba(250, 243, 232, 0.1);
    transform: translateY(-4px);
    border-color: var(--terracotta);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(193, 68, 14, 0.15);
    color: var(--terracotta-pale);
    margin-bottom: 16px;
}

.trust-item h3 {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--warm-sand);
    line-height: 1.6;
}

.trust-item p a {
    color: var(--terracotta-pale);
    text-decoration: underline;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 100px 100px var(--radius-md) var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--warm-sand-dark);
    transition: all var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    border-color: var(--terracotta);
}

.service-card-arch {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Service card background images */
.service-card[data-service="gaming"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/gaming-table.webp') center/cover no-repeat;
}
.service-card[data-service="accommodation"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/resort-room.webp') center/cover no-repeat;
}
.service-card[data-service="dining"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/resort-dining.webp') center/cover no-repeat;
}
.service-card[data-service="spa"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/spa-pool.webp') center/cover no-repeat;
}
.service-card[data-service="events"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/event-ballroom.webp') center/cover no-repeat;
}
.service-card[data-service="concierge"] .service-card-arch {
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.55), rgba(154, 53, 8, 0.65)), url('./img/grXIcKhqeQU.webp') center/cover no-repeat;
}

.service-card-arch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.service-card-icon {
    color: var(--cream);
    z-index: 1;
    transition: transform var(--transition-bounce);
}

.service-card:hover .service-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card-body {
    padding: 28px 24px 32px;
}

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-brown);
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 24px;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--burnt-sienna);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--olive);
    border-radius: 50%;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-frame {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(42, 26, 15, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 12px 12px;
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--warm-sand-dark);
    transition: all var(--transition-smooth);
}

.case-study-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--terracotta);
}

.case-study-header {
    padding: 28px 24px 20px;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal) 100%);
}

.case-study-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-pale);
    background: rgba(193, 68, 14, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.case-study-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cream);
    font-weight: 600;
}

.case-study-body {
    padding: 24px;
}

.case-study-body p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--warm-sand);
}

.case-study-stat {
    text-align: center;
}

.case-study-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.case-study-stat span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--burnt-sienna);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.team-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 3px solid var(--warm-sand-dark);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: var(--terracotta);
}

.team-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-avatar-inner {
    color: var(--cream);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--charcoal);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--deep-brown);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(250, 243, 232, 0.06);
    border: 1px solid rgba(250, 243, 232, 0.1);
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(250, 243, 232, 0.1);
    border-color: var(--terracotta);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--terracotta-pale);
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--cream-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(250, 243, 232, 0.1);
    padding-top: 16px;
}

.testimonial-stars {
    margin-bottom: 8px;
}

.star {
    color: #e8a832;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
}

.testimonial-author span {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--warm-sand);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-col .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--terracotta);
    border: 2px solid var(--warm-sand-dark);
}

.contact-detail div strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-brown);
    margin-bottom: 4px;
}

.contact-detail div span {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--warm-sand-dark);
    box-shadow: var(--shadow-warm-lg);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.required {
    color: var(--terracotta);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--off-white);
    border: 2px solid var(--warm-sand-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(193, 68, 14, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #c0392b;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 4px;
    min-height: 18px;
}

.form-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--warm-sand-dark);
    border-radius: 4px;
    background: var(--off-white);
    position: relative;
    transition: all var(--transition-smooth);
    margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--terracotta);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 0.9rem;
}

.form-success {
    text-align: center;
    padding: 32px 16px;
}

.success-icon {
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--olive);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 1rem;
    color: var(--charcoal);
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    position: relative;
    background: var(--deep-brown);
    color: var(--warm-sand);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250, 243, 232, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo .logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--warm-sand);
    margin-bottom: 16px;
}

.footer-contact-quick span {
    font-size: 0.85rem;
    color: var(--terracotta-pale);
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-sub-heading {
    margin-top: 28px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--warm-sand);
    transition: color var(--transition-smooth);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--terracotta-pale);
}

.footer-small {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--warm-sand);
}

.footer-small strong {
    color: var(--cream);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 243, 232, 0.5);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(250, 243, 232, 0.35);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--deep-brown);
    border-top: 3px solid var(--terracotta);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--warm-sand);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--terracotta-pale);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-cookie-accept {
    background: var(--terracotta);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: var(--terracotta-dark);
}

.btn-cookie-essential {
    background: var(--olive);
    color: var(--white);
}

.btn-cookie-essential:hover {
    background: var(--olive-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--warm-sand);
    border: 1px solid var(--warm-sand);
}

.btn-cookie-decline:hover {
    background: rgba(250, 243, 232, 0.1);
}

/* ============================================
   MODALS
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 26, 15, 0.85);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
    border: 3px solid var(--warm-sand-dark);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--off-white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.modal-close:hover {
    background: var(--terracotta);
    color: var(--white);
}

.modal-arch-header {
    height: 80px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    overflow: hidden;
}

.modal-arch-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.04) 10px,
        rgba(255,255,255,0.04) 20px
    );
}

.modal-body {
    padding: 32px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 16px;
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--terracotta);
    margin-top: 24px;
    margin-bottom: 8px;
}

.modal-body p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.modal-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.93rem;
    color: var(--charcoal);
}

.modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--olive);
    border-radius: 50%;
}

.modal-cta {
    margin-top: 24px;
    display: inline-block;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--deep-brown);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        transition: right 0.4s;
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: var(--cream) !important;
        font-size: 0.9rem;
    }

    .nav-link-cta {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-frame {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item-large {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title-line-3 {
        font-size: 2.5rem;
    }

    .hero-title-line-4 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .case-study-results {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--terracotta-pale);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--terracotta);
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
    background: var(--terracotta);
    color: var(--white);
}

::-moz-selection {
    background: var(--terracotta);
    color: var(--white);
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */

*:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero-title-line,
    .hero-badge,
    .hero-subtitle,
    .hero-actions,
    .hero-stats,
    .hero-scroll-indicator {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
