/* ============================================
   FIRST INN OF PAGOZA — Styles
   Vibrant modern · Emerald + Cream · Geometric
   ============================================ */

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

:root {
    --emerald-900: #042f23;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fde68a;

    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;

    --stone-50:  #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.1);

    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--stone-800);
    background: var(--cream-50);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* --- Typography --- */
.text-accent {
    color: var(--amber-600);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: var(--emerald-100);
    border: 1px solid var(--emerald-500);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-600);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--stone-900);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--stone-600);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: #fff;
    box-shadow: 0 4px 14px rgba(6, 95, 70, .35);
}

.btn-primary:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 95, 70, .4);
}

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

.btn-outline:hover {
    background: var(--emerald-50);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-inner { padding: 0 40px; }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--stone-900);
}

.nav-logo:hover { color: var(--emerald-700); }

.nav-logo-mark {
    flex-shrink: 0;
}

.nav-logo-text { display: none; }
@media (min-width: 480px) {
    .nav-logo-text { display: block; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-cta {
    background: var(--emerald-700) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 22px !important;
}

.nav-cta:hover {
    background: var(--emerald-600) !important;
    color: #fff !important;
}

/* Mobile toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--stone-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-links-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.nav-links-mobile.open { display: flex; }

.nav-links-mobile a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--stone-700);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links-mobile a:hover {
    background: var(--emerald-50);
    color: var(--emerald-700);
}

.nav-links-mobile .nav-cta-mobile {
    background: var(--emerald-700);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--emerald-50) 100%);
    padding-top: 72px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 80px 40px;
    }
}

/* Geometric shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-shape--circle {
    width: 400px;
    height: 400px;
    background: var(--emerald-100);
    border-radius: 50%;
    top: -80px;
    right: -100px;
    opacity: .6;
}

@media (min-width: 900px) {
    .hero-shape--circle { width: 520px; height: 520px; }
}

.hero-shape--rect {
    width: 180px;
    height: 180px;
    background: var(--amber-400);
    border-radius: var(--radius-lg);
    bottom: 120px;
    left: -40px;
    opacity: .25;
    transform: rotate(15deg);
}

@media (min-width: 900px) {
    .hero-shape--rect { width: 240px; height: 240px; left: 20px; }
}

.hero-shape--triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid var(--emerald-500);
    opacity: .12;
    top: 200px;
    left: 30%;
}

@media (min-width: 900px) {
    .hero-shape--triangle {
        left: auto;
        right: 60px;
        top: 100px;
        border-left-width: 130px;
        border-right-width: 130px;
        border-bottom-width: 220px;
    }
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    right: 5%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--emerald-600) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: .2;
    z-index: 1;
}

/* Hero content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--emerald-700);
    background: rgba(6, 95, 70, .08);
    border: 1px solid rgba(6, 95, 70, .2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--stone-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--stone-600);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hero cards */
.hero-cards {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card--main {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.hero-card--main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media (min-width: 600px) {
    .hero-card--main img { height: 420px; }
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stat cards */
.stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
}

.stat-card--top {
    top: 20px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.stat-card--bottom {
    bottom: 40px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

@media (min-width: 600px) {
    .stat-card--top { left: -40px; }
    .stat-card--bottom { right: -30px; }
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}

.stat-card-number .stat-card-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-600);
}

.stat-card-label {
    font-size: 0.78rem;
    color: var(--stone-600);
    font-weight: 500;
}

.stat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.stat-card--top .stat-card-accent { background: var(--amber-500); }
.stat-card--bottom .stat-card-accent { background: var(--emerald-500); }

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

[data-float-delay] {
    animation-delay: 2s;
}

/* --- Rooms --- */
.rooms {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-600), var(--amber-500), var(--emerald-600));
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .rooms-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--stone-200);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.room-card-img {
    position: relative;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--emerald-700);
    color: #fff;
    letter-spacing: 0.04em;
}

.room-card-tag--accent {
    background: var(--amber-600);
}

.room-card-body {
    padding: 24px;
}

.room-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.room-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--stone-600);
    font-weight: 500;
}

.room-card-feature svg {
    color: var(--emerald-600);
}

.room-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 8px;
}

.room-card-desc {
    font-size: 0.92rem;
    color: var(--stone-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* --- Amenities --- */
.amenities {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--emerald-800);
    border-radius: 50%;
    opacity: .5;
}

.amenities::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--amber-600);
    border-radius: 50%;
    opacity: .08;
}

.amenities .section-tag {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: var(--emerald-100);
}

.amenities .section-tag::before {
    background: var(--amber-400);
}

.amenities .section-title {
    color: #fff;
}

.amenities .section-sub {
    color: rgba(255,255,255,.7);
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .amenities-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* Image stack */
.amenities-img-stack {
    position: relative;
    height: 500px;
}

.amenities-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.amenities-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--emerald-900);
}

@media (min-width: 600px) {
    .amenities-img-float { width: 260px; }
}

.amenities-img-float img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.amenities-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--amber-500) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: .3;
}

/* Amenities list */
.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.amenity-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.amenity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

.amenity-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.amenity-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

/* --- Location --- */
.location {
    padding: 100px 0;
    background: var(--cream-100);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--emerald-100);
    border-radius: 50%;
    opacity: .4;
    transform: translate(30%, -30%);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .location-layout { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.location-highlight {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid var(--stone-200);
    transition: var(--transition);
}

.location-highlight:hover {
    border-color: var(--emerald-500);
    box-shadow: var(--shadow-md);
}

.location-highlight-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 4px;
}

.location-highlight-label {
    font-size: 0.82rem;
    color: var(--stone-600);
    font-weight: 500;
}

.location-address {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--emerald-700);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    line-height: 1.7;
}

.location-address-icon {
    flex-shrink: 0;
    color: var(--amber-400);
}

/* Map */
.location-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 600px) {
    .location-map img { height: 500px; }
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--stone-800);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.map-btn:hover {
    background: var(--emerald-700);
    color: #fff;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: var(--amber-400);
    border-radius: 50%;
    opacity: .08;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .about-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--amber-600);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-badge-num {
    font-size: 1.4rem;
}

.about-content .section-sub {
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--stone-200);
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--stone-600);
    font-weight: 500;
    margin-top: 4px;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--stone-300);
}

/* --- CTA --- */
.cta {
    padding: 100px 0;
    background: var(--emerald-700);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    opacity: .08;
}

.cta-shape--circle {
    width: 400px;
    height: 400px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.cta-shape--square {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: var(--radius-lg);
    bottom: -60px;
    left: 10%;
    transform: rotate(20deg);
}

.cta-shape--dot {
    width: 80px;
    height: 80px;
    background: var(--amber-500);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .cta-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.cta .section-tag {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    color: var(--emerald-100);
}

.cta .section-tag::before {
    background: var(--amber-400);
}

.cta .section-title {
    color: #fff;
}

.cta .section-sub {
    color: rgba(255,255,255,.7);
    margin-bottom: 32px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.85);
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-contact:hover {
    color: var(--amber-400);
}

.cta-contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

/* Contact form */
.contact-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--stone-700);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--stone-800);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
    background: #fff;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    color: var(--emerald-700);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}

.form-success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--stone-900);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand { max-width: 300px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo:hover { color: var(--amber-400); }

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber-400);
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}

.footer-contact a:hover { color: var(--amber-400); }

.footer-contact span {
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.3);
}
