/* ============================================
   Philomena's Salumeria — Stylesheet
   Palette: Plum + Amber · Fresh & Airy
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    --plum-50:  #faf4f7;
    --plum-100: #f3e8ee;
    --plum-200: #e8cdd9;
    --plum-300: #d4a3b8;
    --plum-400: #c07a96;
    --plum-500: #a85778;
    --plum-600: #8e3f60;
    --plum-700: #6B3A6B;
    --plum-800: #4a2548;
    --plum-900: #2e152e;

    --amber-50:  #fdf8ee;
    --amber-100: #fbedc9;
    --amber-200: #f5d89a;
    --amber-300: #eec26a;
    --amber-400: #e4a832;
    --amber-500: #d4900a;
    --amber-600: #b5720a;
    --amber-700: #8c550c;
    --amber-800: #6b410f;
    --amber-900: #4d2f0e;

    --cream: #fefcf8;
    --cream-dark: #f9f5ef;
    --warm-gray: #6b6560;
    --warm-gray-light: #9a9490;
    --warm-gray-dark: #3d3835;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Nunito', 'Segoe UI', system-ui, sans-serif;

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

    --shadow-sm: 0 2px 8px rgba(107, 58, 107, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 58, 107, 0.10);
    --shadow-lg: 0 16px 60px rgba(107, 58, 107, 0.14);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--warm-gray-dark);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--warm-gray-dark);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--plum-800);
    box-shadow: 0 6px 24px rgba(107, 58, 107, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200);
}

.btn-ghost:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 58, 107, 0.08);
    transition: all 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;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--plum-700);
    font-weight: 500;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--plum-700);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.nav-logo-text {
    font-family: var(--font-serif);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-400);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--plum-700);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--plum-700);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--plum-800);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--plum-700);
    border-radius: 2px;
    transition: all var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--warm-gray-dark);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--plum-700);
}

.mobile-menu-cta {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 1rem !important;
    background: var(--plum-700);
    color: #fff;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-50) 0%, var(--cream) 40%, var(--amber-50) 100%);
    padding: 120px 24px 80px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--plum-700) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-editorial {
    padding-right: 20px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--amber-400);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--plum-900);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum-600);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-signature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-signature-line {
    width: 48px;
    height: 1px;
    background: var(--plum-300);
}

.hero-signature-text {
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    letter-spacing: 0.04em;
}

/* Hero Images */
.hero-visual {
    position: relative;
    height: 600px;
}

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

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img--main {
    width: 340px;
    height: 460px;
    top: 20px;
    right: 0;
}

.hero-img--accent {
    width: 260px;
    height: 200px;
    bottom: 20px;
    right: 140px;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.hero-img-label {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--plum-700);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-img-label-dot {
    width: 6px;
    height: 6px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum-300), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Divider ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.divider-icon {
    width: 24px;
    height: 24px;
    color: var(--plum-300);
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image-stack {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    padding-left: 20px;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--warm-gray-light);
    line-height: 1.5;
}

/* ---------- Specialties ---------- */
.specialties {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--plum-50) 100%);
}

.specialties-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.specialties-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

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

.specialty-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(107, 58, 107, 0.06);
}

.specialty-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.specialty-card-img {
    height: 220px;
    overflow: hidden;
}

.specialty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.specialty-card-body {
    padding: 32px;
}

.specialty-number {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--amber-400);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.specialty-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--warm-gray-dark);
}

.specialty-card-body p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.specialty-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--plum-700);
    transition: color var(--transition);
}

.specialty-link:hover {
    color: var(--plum-500);
}

/* ---------- Menu ---------- */
.menu-section {
    padding: 120px 0;
    background: var(--cream);
}

.menu-layout {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.menu-text-col {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.menu-intro {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

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

.menu-col-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--plum-700);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--plum-100);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.menu-list:last-child {
    margin-bottom: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    white-space: nowrap;
}

.menu-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.menu-note {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    font-style: italic;
}

/* ---------- Atmosphere / Testimonial ---------- */
.atmosphere {
    padding: 120px 0;
    background: var(--plum-700);
    position: relative;
    overflow: hidden;
}

.atm-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

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

.atm-content .section-eyebrow {
    color: var(--amber-300);
}

.atm-quote {
    position: relative;
    padding: 0 20px;
}

.atm-quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    color: var(--amber-400);
    opacity: 0.5;
}

.atm-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.atm-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.atm-attr-line {
    width: 40px;
    height: 1px;
    background: var(--amber-400);
    opacity: 0.6;
}

.atm-attribution span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
}

/* ---------- Visit ---------- */
.visit {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--amber-50) 100%);
}

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

.visit-info {
    padding-right: 20px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.visit-detail-icon svg {
    width: 18px;
    height: 18px;
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    margin-bottom: 4px;
}

.visit-detail span {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--plum-600);
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--plum-800);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.visit-img-secondary {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact-text {
    padding-top: 20px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

.contact-form-wrap {
    background: var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(107, 58, 107, 0.08);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    background: var(--cream);
    border: 1.5px solid var(--plum-100);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(107, 58, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--plum-50);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 8px;
}

.form-success svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--plum-600);
}

.form-success span {
    font-size: 0.9rem;
    color: var(--plum-800);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--plum-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 4px;
}

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

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 40px;
    }

    .hero-visual {
        height: 500px;
    }

    .hero-img--main {
        width: 280px;
        height: 380px;
    }

    .hero-img--accent {
        width: 200px;
        height: 160px;
        right: 100px;
    }

    .about-layout,
    .visit-layout,
    .contact-layout {
        gap: 48px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

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

    .hero-editorial {
        padding-right: 0;
        text-align: center;
    }

    .hero-eyebrow {
        padding-left: 0;
    }

    .hero-eyebrow::before {
        display: none;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

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

    .hero-signature {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-img--main {
        width: 220px;
        height: 300px;
        top: 10px;
        right: 20px;
    }

    .hero-img--accent {
        width: 160px;
        height: 130px;
        right: 60px;
        bottom: 10px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about,
    .specialties,
    .menu-section,
    .atmosphere,
    .visit,
    .contact {
        padding: 80px 0;
    }

    .about-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-img-main {
        height: 320px;
    }

    .about-img-float {
        height: 180px;
    }

    .about-text-col {
        padding-left: 0;
    }

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

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

    .visit-info {
        padding-right: 0;
    }

    .visit-visual {
        order: -1;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-img--main {
        width: 180px;
        height: 250px;
    }

    .hero-img--accent {
        width: 140px;
        height: 110px;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
