/* ============================================
   Doggroomer Zürich - Premium Styling
   ============================================ */

/* --- Custom Properties --- */
:root {
    --color-mauve: #B07EB5;
    --color-mauve-light: #D4B5D7;
    --color-mauve-dark: #8D6E93;
    --color-navy: #2B2D42;
    --color-navy-light: #4A4E69;
    --color-cream: #FAF8F6;
    --color-white: #FFFFFF;
    --color-gold: #C8A96E;
    --color-gold-light: #E8D5B0;
    --color-text: #3A3A3C;
    --color-text-light: #6B6B6D;
    --color-border: #E8E4E0;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 8px rgba(43, 45, 66, 0.06);
    --shadow-md: 0 4px 20px rgba(43, 45, 66, 0.08);
    --shadow-lg: 0 8px 40px rgba(43, 45, 66, 0.12);
    --shadow-xl: 0 16px 60px rgba(43, 45, 66, 0.16);

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

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::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);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Section Base --- */
.section {
    padding: 120px 0;
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: 16px;
}

.section__label--light {
    color: var(--color-mauve-light);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__title--light {
    color: var(--color-white);
}

.section__subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-mauve);
    margin-bottom: 24px;
}

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

.section__description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn--primary:hover {
    background: var(--color-mauve-dark);
    border-color: var(--color-mauve-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn--outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav__logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.nav--scrolled .nav__logo-img {
    height: 40px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--color-white);
    transition: var(--transition);
}

.nav--scrolled .nav__link {
    color: var(--color-navy);
}

.nav__link:hover {
    color: var(--color-mauve);
}

.nav__link--cta {
    background: var(--color-mauve);
    color: var(--color-white) !important;
    padding: 10px 24px;
}

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

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav--scrolled .nav__toggle span {
    background: var(--color-navy);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--color-navy) 0%, #1a1b2e 40%, #2B2D42 60%, var(--color-mauve-dark) 100%);
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(176, 126, 181, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero__logo-wrapper {
    margin-bottom: 40px;
}

.hero__logo-img {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-mauve-light);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero__cta .btn--primary {
    background: var(--color-mauve);
    border-color: var(--color-mauve);
}

.hero__cta .btn--primary:hover {
    background: var(--color-mauve-light);
    border-color: var(--color-mauve-light);
    color: var(--color-navy);
}

.hero__cta .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero__cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.hero__scroll {
    animation: float 3s ease-in-out infinite;
}

.hero__scroll-link {
    color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ============================================
   About
   ============================================ */
.about {
    background: var(--color-cream);
}

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

.about__image {
    position: relative;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border-radius: var(--radius-lg);
    border: 3px solid var(--color-mauve-light);
    z-index: -1;
}

.about__text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 1.02rem;
}

.about__text p:last-child {
    margin-bottom: 32px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.about__highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mauve-light), var(--color-mauve));
    color: var(--color-white);
    flex-shrink: 0;
}

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

/* ============================================
   Philosophy
   ============================================ */
.philosophy {
    padding: 100px 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(176, 126, 181, 0.12) 0%, transparent 70%);
}

.philosophy__quote {
    position: relative;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy__mark {
    color: var(--color-mauve-light);
    font-size: 1.5em;
}

.philosophy__author {
    display: block;
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-mauve-light);
}

/* ============================================
   Services
   ============================================ */
.services {
    background: var(--color-white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

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

.service-card--featured {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    border: 2px solid var(--color-mauve);
}

.service-card__ribbon {
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--color-mauve);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 36px;
    transform: rotate(45deg);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(176, 126, 181, 0.1), rgba(176, 126, 181, 0.05));
    color: var(--color-mauve);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-mauve), var(--color-mauve-dark));
    color: var(--color-white);
    transform: scale(1.05);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__badge {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-mauve-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.services__cta {
    text-align: center;
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    background: var(--color-cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 48px;
}

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

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

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

.gallery__item--large {
    grid-row: span 2;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(43, 45, 66, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
}

.gallery__cta {
    text-align: center;
}

/* ============================================
   First Visit
   ============================================ */
.first-visit {
    background: var(--color-white);
}

.first-visit__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.visit-card {
    padding: 40px 28px;
    border-radius: var(--radius-md);
    background: var(--color-cream);
    transition: var(--transition);
    position: relative;
}

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

.visit-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-mauve-light);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.visit-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.visit-card__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.visit-card__link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-mauve);
}

.visit-card__link:hover {
    color: var(--color-mauve-dark);
}

/* ============================================
   Policy
   ============================================ */
.policy {
    background: var(--color-cream);
    padding: 80px 0;
}

.policy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.policy-item {
    display: flex;
    gap: 16px;
}

.policy-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-mauve);
    box-shadow: var(--shadow-sm);
}

.policy-item__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.policy-item__text {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   Booking
   ============================================ */
.booking {
    background: var(--color-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(176, 126, 181, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(200, 169, 110, 0.1) 0%, transparent 50%);
}

.booking__wrapper {
    position: relative;
}

.booking__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.booking__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 48px;
}

.booking__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.booking__method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    text-align: left;
    transition: var(--transition);
}

.booking__method:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-mauve);
    transform: translateY(-2px);
}

.booking__method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-mauve);
    color: var(--color-white);
}

.booking__method strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.booking__method span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.booking__method small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 4px;
}

.booking__register {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.booking__register a {
    color: var(--color-mauve-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking__register a:hover {
    color: var(--color-white);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    background: var(--color-white);
}

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

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

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

.contact__detail svg {
    flex-shrink: 0;
    color: var(--color-mauve);
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.contact__detail a,
.contact__detail span {
    font-size: 0.92rem;
    color: var(--color-text-light);
}

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

.contact__map-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.85rem !important;
    font-weight: 500;
    color: var(--color-mauve) !important;
}

.contact__social {
    display: flex;
    gap: 12px;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-navy);
    transition: var(--transition);
}

.contact__social-link:hover {
    background: var(--color-mauve);
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact__review {
    position: sticky;
    top: 120px;
}

.review-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}

.review-card__stars {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.review-card__text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-navy);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-card__author {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

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

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.6;
}

.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-mauve-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    opacity: 0.4;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer__social a:hover {
    color: var(--color-mauve-light);
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        color: var(--color-navy) !important;
        font-size: 1rem;
        width: 100%;
    }

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

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

    .about__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .gallery__item--large {
        grid-row: auto;
    }

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

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

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

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero__logo-img {
        max-width: 280px;
    }

    .hero__cta .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
}

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

    .container {
        padding: 0 16px;
    }

    .first-visit__grid {
        grid-template-columns: 1fr;
    }

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

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

    .philosophy {
        padding: 60px 0;
    }

    .booking {
        padding: 60px 0;
    }

    .hero__tagline {
        font-size: 1rem;
    }
}

/* --- Print styles --- */
@media print {
    .nav,
    .hero__scroll,
    .hero__cta .btn--outline {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }
}
