/* ============================================================
   TEREZAZDAVLE — Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: 'Inter', sans-serif;
}

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

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

p {
    font-size: 0.9375rem;
    color: #8a8a8a;
    line-height: 1.85;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 7rem 0;
}

.section--beige {
    background: #f5f3f0;
}

.section--black {
    background: #1a1a1a;
    color: #ffffff;
}

.section--black p {
    color: rgba(255, 255, 255, 0.65);
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 1.5rem;
    display: block;
}

.section--black .section-label {
    color: rgba(255, 255, 255, 0.4);
}

.section-title {
    margin-bottom: 1.5rem;
}

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

.divider {
    width: 1px;
    height: 60px;
    background: #d4d0cb;
    margin: 0 auto;
}

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

.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.75rem;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid;
    background: transparent;
    text-align: center;
    display: inline-block;
}

.btn--dark {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn--dark:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn--light {
    color: #ffffff;
    border-color: #ffffff;
}

.btn--light:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.btn--filled {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--filled:hover {
    background: transparent;
    color: #1a1a1a;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #d4d0cb;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 2.5rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social a {
    color: #1a1a1a;
    font-size: 1rem;
    opacity: 0.55;
    transition: opacity 0.2s;
    line-height: 1;
}

.nav-social a:hover {
    opacity: 1;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 36px;
    align-items: flex-end;
}

.hamburger span {
    display: block;
    height: 1px;
    background: #1a1a1a;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

.hamburger:hover span {
    width: 100%;
}

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */

.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #1a1a1a;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.menu-close {
    position: absolute;
    top: 1.75rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0.25rem;
}

.menu-close:hover {
    opacity: 1;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    position: relative;
    transition: opacity 0.2s;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
    transform: scaleX(1);
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0 2.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.5rem;
}

.footer-contact {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1.75rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.125rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom > span {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-legal a {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   COOKIE BAR
   ============================================================ */

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease;
}

.cookie-bar.is-hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-bar p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    margin: 0;
}

.cookie-bar a {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 3.5rem 5rem;
    color: #ffffff;
    max-width: 760px;
}

.hero-label {
    font-size: 0.625rem;
    letter-spacing: 0.35em;
    font-weight: 500;
    opacity: 0.65;
    margin-bottom: 1.25rem;
    display: block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2.75rem;
    color: #ffffff;
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */

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

.intro-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.link-arrow {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    border-bottom: 1px solid #d4d0cb;
    padding-bottom: 3px;
    transition: border-color 0.2s;
}

.link-arrow:hover {
    border-color: #1a1a1a;
}

/* ============================================================
   INTRO GRID (HOMEPAGE)
   ============================================================ */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text-col {
    /* text side */
}

.intro-text-col .intro-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.intro-photo-col {
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f3f0;
}

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

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-photo-col {
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   PORTFOLIO PREVIEW (HOMEPAGE)
   ============================================================ */

.portfolio-preview {
    text-align: center;
}

.portfolio-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    align-items: start;
}

.portfolio-item {
    overflow: hidden;
    background: #f5f3f0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.04);
}

.portfolio-item:nth-child(1) { height: 440px; }
.portfolio-item:nth-child(2) { height: 320px; margin-top: 3rem; }
.portfolio-item:nth-child(3) { height: 400px; }

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: #d4d0cb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: #8a8a8a;
    text-transform: uppercase;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #d4d0cb;
    border-left: 1px solid #d4d0cb;
    margin: 3rem 0;
}

.service-item {
    padding: 3.5rem;
    border-right: 1px solid #d4d0cb;
    border-bottom: 1px solid #d4d0cb;
}

.service-number {
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    color: #8a8a8a;
    margin-bottom: 2rem;
    display: block;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-desc {
    font-size: 0.875rem;
    color: #8a8a8a;
    line-height: 1.75;
}

/* ============================================================
   QUOTE / MEDIA SECTION
   ============================================================ */

.quote-section {
    text-align: center;
}

.media-label {
    font-size: 0.625rem;
    letter-spacing: 0.35em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3.5rem;
    display: block;
    text-transform: uppercase;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.625rem, 3.5vw, 2.625rem);
    font-style: italic;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.quote-source {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 3rem;
    border: 1px solid #d4d0cb;
}

.testimonial {
    padding: 3rem;
    background: #f5f3f0;
    border-right: 1px solid #d4d0cb;
    border-bottom: 1px solid #d4d0cb;
}

.testimonial:nth-child(2n) {
    border-right: none;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.testimonial-author {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: #8a8a8a;
    text-transform: lowercase;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    text-align: center;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.page-header {
    padding: 9rem 0 4rem;
    border-bottom: 1px solid #d4d0cb;
}

.page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.page-header h1 {
    margin-bottom: 0.75rem;
}

.page-header-sub {
    font-size: 0.875rem;
    color: #8a8a8a;
    letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 5rem;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.about-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
}

.about-table tr {
    border-bottom: 1px solid #d4d0cb;
}

.about-table tr:first-child {
    border-top: 1px solid #d4d0cb;
}

.about-table td {
    padding: 1.125rem 0;
    font-size: 0.875rem;
    vertical-align: top;
    color: #1a1a1a;
}

.about-table td:first-child {
    color: #8a8a8a;
    letter-spacing: 0.15em;
    font-size: 0.625rem;
    text-transform: uppercase;
    width: 42%;
    font-weight: 400;
    padding-top: 1.25rem;
}

.about-bio {
    margin: 2rem 0;
}

.about-bio p + p {
    margin-top: 1.25rem;
}

.about-blockquote {
    border-left: 2px solid #1a1a1a;
    padding-left: 2rem;
    margin: 3rem 0;
}

.about-blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
}

.about-photo {
    background: #f5f3f0;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: sticky;
    top: 7rem;
}

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

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #d4d0cb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   EXHIBITIONS
   ============================================================ */

.exhibitions {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid #d4d0cb;
}

.exhibitions h2 {
    margin-bottom: 3rem;
}

.exhibition-list {
    border-top: 1px solid #d4d0cb;
}

.exhibition-item {
    display: grid;
    grid-template-columns: 80px 1fr 220px;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #d4d0cb;
    align-items: center;
}

.exhibition-year {
    font-size: 0.8125rem;
    color: #8a8a8a;
    letter-spacing: 0.05em;
}

.exhibition-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 400;
}

.exhibition-gallery {
    font-size: 0.8125rem;
    color: #8a8a8a;
    text-align: right;
}

/* ============================================================
   PORTFOLIO PAGE — MASONRY
   ============================================================ */

.portfolio-masonry {
    columns: 3;
    column-gap: 0.875rem;
    margin-top: 3rem;
}

.portfolio-masonry-item {
    break-inside: avoid;
    margin-bottom: 0.875rem;
    cursor: pointer;
    overflow: hidden;
    background: #f5f3f0;
    position: relative;
}

.portfolio-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-masonry-item:hover img {
    transform: scale(1.04);
}

.portfolio-empty {
    text-align: center;
    padding: 6rem 0;
    color: #8a8a8a;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.75rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.25rem;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: color 0.2s;
    padding: 0.25rem;
}

.lightbox-close:hover {
    color: #ffffff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1.5rem;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ffffff;
}

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #d4d0cb;
    border-left: 1px solid #d4d0cb;
    margin-top: 3rem;
}

.service-detail {
    padding: 4rem;
    border-right: 1px solid #d4d0cb;
    border-bottom: 1px solid #d4d0cb;
}

.service-detail-number {
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    color: #8a8a8a;
    margin-bottom: 2.5rem;
    display: block;
}

.service-detail-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-detail-desc {
    font-size: 0.9375rem;
    color: #8a8a8a;
    line-height: 1.85;
}

/* Gift voucher */
.gift-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border: 1px solid #d4d0cb;
}

.gift-photo {
    background: #f5f3f0;
    background-image: url('/images/gift.jpg');
    background-size: cover;
    background-position: center;
    min-height: 360px;
}

.gift-content {
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gift-content h2 {
    margin-bottom: 1.5rem;
}

.gift-content p {
    margin-bottom: 2.5rem;
}

/* References on services page */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #d4d0cb;
    border-left: 1px solid #d4d0cb;
    margin-top: 3rem;
}

.reference-item {
    padding: 3.5rem;
    border-right: 1px solid #d4d0cb;
    border-bottom: 1px solid #d4d0cb;
}

.reference-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.reference-author {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: #8a8a8a;
}

/* ============================================================
   RESERVATION / CONTACT FORMS
   ============================================================ */

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 7rem;
    align-items: start;
}

.reservation-info h1 {
    margin-bottom: 1.75rem;
}

.reservation-info > p {
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #8a8a8a;
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0;
    border-bottom: 1px solid #d4d0cb;
}

.contact-detail-item:first-child {
    border-top: 1px solid #d4d0cb;
}

.contact-detail-label {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 0.4rem;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: #1a1a1a;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 0.75rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4d0cb;
    padding: 0.75rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 300;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #1a1a1a;
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.75rem;
    cursor: pointer;
}

.honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
}

.form-error {
    color: #c0392b;
    font-size: 0.6875rem;
    margin-top: 0.4rem;
    letter-spacing: 0.03em;
    display: none;
}

.form-error.visible {
    display: block;
}

.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    border-left: 2px solid;
}

.alert--error {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.04);
}

.form-submit {
    margin-top: 1rem;
}

/* Contact page layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
    margin-top: 5rem;
}

.contact-right {
    padding-top: 1rem;
}

.contact-right p {
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
    color: #1a1a1a;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou {
    min-height: calc(100vh - 72px);
    margin-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
}

.thankyou-inner {
    max-width: 500px;
}

.thankyou-line {
    width: 40px;
    height: 1px;
    background: #d4d0cb;
    margin: 0 auto 2.5rem;
}

.thankyou-inner h1 {
    margin-bottom: 1.25rem;
}

.thankyou-inner p {
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* ============================================================
   TEXT PAGES (GDPR, COOKIES)
   ============================================================ */

.text-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 9rem 2.5rem 7rem;
}

.text-page h1 {
    margin-bottom: 0.75rem;
}

.text-page .page-date {
    font-size: 0.8125rem;
    color: #8a8a8a;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d4d0cb;
    display: block;
}

.text-page h2 {
    font-size: 1.625rem;
    margin: 3rem 0 1.25rem;
}

.text-page p,
.text-page li {
    font-size: 0.9375rem;
    color: #8a8a8a;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.text-page ul {
    list-style: disc;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
}

.text-page a {
    color: #1a1a1a;
    border-bottom: 1px solid #d4d0cb;
    transition: border-color 0.2s;
}

.text-page a:hover {
    border-color: #1a1a1a;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .portfolio-masonry {
        columns: 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-photo {
        max-width: 520px;
        aspect-ratio: 4/3;
        position: static;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .gift-section {
        grid-template-columns: 1fr;
    }

    .gift-photo {
        height: 360px;
    }

    .gift-content {
        padding: 3rem;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

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

    .nav-inner {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 0 1.75rem 4rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .portfolio-grid-preview {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(3) {
        height: 300px;
        margin-top: 0;
    }

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

    .services-grid .service-item {
        border-right: none;
    }

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

    .services-page-grid .service-detail {
        border-right: none;
        padding: 2.5rem 1.75rem;
    }

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

    .testimonial {
        border-right: none;
    }

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

    .reference-item {
        border-right: none;
        padding: 2.5rem 1.75rem;
    }

    .portfolio-masonry {
        columns: 1;
    }

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

    .exhibition-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .exhibition-gallery {
        display: none;
    }

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

    .cookie-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-item {
        padding: 2.5rem 1.75rem;
    }

    .gift-content {
        padding: 2.5rem 1.75rem;
    }

    .menu-close {
        right: 1.5rem;
    }

    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
}

@media (max-width: 480px) {
    .hero-line { display: none; }

    .btn {
        padding: 0.875rem 2rem;
    }

    .about-table td:first-child {
        width: 45%;
    }

    .footer-nav {
        gap: 0.75rem;
    }
}
