/* ========================================
   Cinnamon Club Indian Bistro & Bar
   Custom Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta: #C0523A;
    --color-terracotta-dark: #A0402E;
    --color-terracotta-light: #D4755E;
    --color-sand: #F5E6D3;
    --color-sand-light: #FBF5ED;
    --color-sand-dark: #E8D5C0;
    --color-dark: #1A1A2E;
    --color-dark-soft: #2D2D44;
    --color-cream: #FFFDF8;
    --color-text: #2A2A3A;
    --color-text-light: #6B6B80;
    --color-accent-gold: #D4A054;
    --color-success: #1A5F2E;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.14);
    --shadow-xl: 0 30px 80px rgba(26, 26, 46, 0.18);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
    --header-height: 76px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

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

/* --- Decorative Background Shapes --- */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.04;
}

.shape--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--color-terracotta);
    top: -200px;
    right: -150px;
}

.shape--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-accent-gold);
    bottom: 20%;
    left: -100px;
}

.shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 120px 200px 120px;
    border-color: transparent transparent var(--color-terracotta) transparent;
    top: 40%;
    right: 5%;
    opacity: 0.03;
    transform: rotate(15deg);
}

.shape--rect {
    width: 200px;
    height: 200px;
    background: var(--color-sand-dark);
    bottom: 10%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: var(--radius-md);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
    z-index: 1001;
    transition: color var(--transition-fast);
}

.logo--light {
    color: var(--color-sand);
}

.logo__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo__text {
    letter-spacing: -0.01em;
}

/* --- Navigation --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    position: relative;
}

.nav__link:hover {
    color: var(--color-terracotta);
    background: rgba(192, 82, 58, 0.06);
}

.nav__link--cta {
    background: var(--color-terracotta);
    color: #fff !important;
    font-weight: 600;
    margin-left: 8px;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__link--cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(192, 82, 58, 0.35);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    cursor: pointer;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.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);
}

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

.btn--primary {
    background: var(--color-terracotta);
    color: #fff;
    box-shadow: 0 4px 16px rgba(192, 82, 58, 0.3);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(192, 82, 58, 0.4);
}

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

.btn--secondary:hover {
    background: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--color-terracotta);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-terracotta);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--color-terracotta);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-cream) 50%, var(--color-sand) 100%);
}

.hero__geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
}

.geo-shape--1 {
    width: 300px;
    height: 300px;
    background: var(--color-terracotta);
    opacity: 0.06;
    border-radius: 50%;
    top: 10%;
    left: -80px;
}

.geo-shape--2 {
    width: 150px;
    height: 150px;
    background: var(--color-accent-gold);
    opacity: 0.1;
    top: 25%;
    right: 35%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
}

.geo-shape--3 {
    width: 80px;
    height: 80px;
    background: var(--color-terracotta-light);
    opacity: 0.08;
    bottom: 20%;
    left: 30%;
    border-radius: 50%;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(192, 82, 58, 0.08);
    border: 1px solid rgba(192, 82, 58, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline em {
    font-style: italic;
    color: var(--color-terracotta);
}

.hero__highlight {
    display: block;
    color: var(--color-terracotta);
    font-size: 0.85em;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    position: relative;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero__image-wrapper:hover img {
    transform: scale(1.03);
}

.hero__image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-terracotta);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    bottom: -30px;
    left: -30px;
    z-index: -1;
}

.hero__floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

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

.hero__floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.hero__floating-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
}

.hero__floating-card-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--color-cream);
}

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

.about__image-stack {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/6;
}

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

.about__image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--color-cream);
    aspect-ratio: 1;
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-terracotta);
    opacity: 0.1;
    border-radius: var(--radius-md);
    top: -20px;
    right: 40%;
    transform: rotate(20deg);
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.about__highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 82, 58, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__highlight strong {
    display: block;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.about__highlight span {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu {
    position: relative;
    padding: 100px 0 120px;
    background: var(--color-dark);
    overflow: hidden;
}

.menu__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-accent-gold), var(--color-terracotta));
}

.menu__band--bottom {
    top: auto;
    bottom: 0;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.menu__header .section-tag {
    color: var(--color-accent-gold);
}

.menu__header .section-tag::before {
    background: var(--color-accent-gold);
}

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

.menu__header .section-title em {
    color: var(--color-accent-gold);
}

.menu__lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.menu__categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu__category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.menu__category--reverse {
    direction: rtl;
}

.menu__category--reverse > * {
    direction: ltr;
}

.menu__category-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.menu__category-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu__category-visual:hover img {
    transform: scale(1.05);
}

.menu__category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent);
}

.menu__category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-terracotta);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
}

.menu__category-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.menu__category-info p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.menu__category-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu__category-items li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu__category-items li:last-child {
    border-bottom: none;
}

.menu__category-items li strong {
    color: var(--color-accent-gold);
    font-weight: 600;
    flex-shrink: 0;
}

.menu__cta {
    text-align: center;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu__cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 100px 0 120px;
    background: var(--color-sand-light);
    position: relative;
    z-index: 1;
}

.gallery__header {
    text-align: center;
    margin-bottom: 56px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.gallery__item--large {
    grid-column: span 7;
    aspect-ratio: 3/2;
}

.gallery__item--wide {
    grid-column: span 8;
    aspect-ratio: 7/3;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    aspect-ratio: 4/3;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    overflow: hidden;
}

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

.cta__shape {
    position: absolute;
    border-radius: 50%;
}

.cta__shape--1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    top: -200px;
    right: -100px;
}

.cta__shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    bottom: -100px;
    left: -50px;
}

.cta__shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    top: 30%;
    left: 15%;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.cta .section-tag::before {
    background: rgba(255, 255, 255, 0.6);
}

.cta__title {
    color: #fff;
}

.cta__title em {
    color: var(--color-sand);
}

.cta__body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0 120px;
    background: var(--color-cream);
    position: relative;
    z-index: 1;
}

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

.contact__body {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact__detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(192, 82, 58, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-sand-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-terracotta);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(192, 82, 58, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    text-align: center;
    padding: 40px 20px;
}

.form__success-icon {
    width: 72px;
    height: 72px;
    background: rgba(26, 95, 46, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form__success-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form__success p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-accent-gold), var(--color-terracotta));
}

.map-section iframe {
    display: block;
    filter: saturate(0.7) contrast(1.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark);
    padding: 72px 0 0;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 56px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-accent-gold);
}

.footer__contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer__contact a:hover {
    color: var(--color-accent-gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    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.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .about__grid {
        gap: 50px;
    }

    .menu__category {
        gap: 40px;
    }

    .contact__grid {
        gap: 50px;
    }

    .gallery__item--large {
        grid-column: span 12;
    }

    .gallery__item--wide {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: stretch;
        background: var(--color-cream);
        padding: calc(var(--header-height) + 24px) 28px 28px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
    }

    .nav__list.open {
        transform: translateX(0);
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    /* Mobile overlay */
    .nav__list::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 46, 0.5);
        backdrop-filter: blur(4px);
        z-index: -1;
    }

    /* Hero */
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 0 60px;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .hero__floating-card {
        left: -10px;
        bottom: 24px;
    }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about__image-stack {
        max-width: 480px;
        margin: 0 auto;
    }

    .about__content {
        max-width: 100%;
    }

    /* Menu */
    .menu {
        padding: 80px 0 100px;
    }

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

    .menu__category--reverse {
        direction: ltr;
    }

    .menu__category-visual {
        aspect-ratio: 16/9;
    }

    /* Gallery */
    .gallery {
        padding: 80px 0 100px;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 2;
    }

    /* CTA */
    .cta {
        padding: 80px 0;
    }

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

    /* Contact */
    .contact {
        padding: 80px 0 100px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-card {
        padding: 28px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero__headline {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
        padding: 16px 24px;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .about__image-secondary {
        right: -10px;
        bottom: -16px;
    }
}
