*, *::before, *::after { box-sizing: border-box; } * { margin: 0; padding: 0; } html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; } body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; } input, button, textarea, select { font: inherit; color: inherit; } button { background: none; border: none; cursor: pointer; } p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; } ul[role='list'], ol[role='list'] { list-style: none; } a { color: inherit; text-decoration: none; } table { border-collapse: collapse; width: 100%; } fieldset { border: 0; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } :root { --color-primary: #111111; --color-accent: #9c2d2d; --color-primary-dark: #000000; --color-primary-light: color-mix(in srgb, var(--color-primary) 65%, white); --color-accent-dark: color-mix(in srgb, var(--color-accent) 80%, black); --color-accent-light: color-mix(in srgb, var(--color-accent) 12%, white); --color-ink: #111111; --color-text-gray: #55534f; --color-line: #e5e2dc; --color-surface: #ffffff; --color-soft: #f7f5f1; --color-black: #111111; --color-white: #ffffff; --color-text: var(--color-ink); --color-text-muted: var(--color-text-gray); --color-heading: var(--color-ink); --color-link: var(--color-ink); --color-link-hover: var(--color-accent); --color-background: var(--color-surface); --color-background-alt: var(--color-soft); --color-border: var(--color-line); --color-success: #2e7d32; --color-error: #c62828; --color-border-subtle: rgba(17, 17, 17, 0.1); --color-secondary: var(--color-accent); --color-secondary-dark: var(--color-accent-dark); --color-secondary-light: var(--color-accent-light); --color-accent-tint: rgba(156, 45, 45, 0.08); --font-display: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif; --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --font-size-base: 16px; --font-size-sm: 0.875rem; --font-size-md: 1rem; --font-size-lg: 1.125rem; --font-size-xl: 1.5rem; --font-size-2xl: 2rem; --font-size-3xl: 2.5rem; --font-size-4xl: 3rem; --font-size-5xl: 3.75rem; --line-height-tight: 1.15; --line-height-snug: 1.3; --line-height-base: 1.6; --font-weight-light: 300; --font-weight-regular: 400; --font-weight-medium: 500; --font-weight-bold: 700; --font-weight-heavy: 800; --font-weight-display-light: 300; --font-weight-display-medium: 500; --tracking-tight: -0.015em; --tracking-wide: 0.16em; --space-3xs: 0.25rem; --space-2xs: 0.5rem; --space-xs: 0.75rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2rem; --space-xl: 3rem; --space-2xl: 4rem; --space-3xl: 6rem; --space-4xl: 8rem; --shell-width: 1320px; --shell-padding: 24px; --container-xl: var(--shell-width); --container-padding: var(--shell-padding); --header-height: 76px; --radius-sm: 2px; --radius-md: 3px; --radius-lg: 4px; --radius-full: 9999px; --shadow-sm: 0 4px 16px rgba(17, 17, 17, 0.06); --shadow-md: 0 12px 32px rgba(17, 17, 17, 0.09); --shadow-lg: 0 24px 56px rgba(17, 17, 17, 0.16); --transition-fast: 150ms ease; --transition-base: 250ms ease; --z-utility-bar: 100; --z-header: 10000; --z-nav: 10001; --z-whatsapp-button: 250; --z-modal: 300; } body { font-family: var(--font-body); font-size: var(--font-size-base); font-weight: var(--font-weight-regular); line-height: var(--line-height-base); color: var(--color-text); background-color: var(--color-background); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: var(--font-weight-bold); line-height: var(--line-height-tight); color: var(--color-heading); margin-bottom: var(--space-sm); letter-spacing: var(--tracking-tight); } h1, h2 { font-weight: var(--font-weight-light); letter-spacing: -0.02em; } h1 { font-size: var(--font-size-4xl); } h2 { font-size: var(--font-size-3xl); } h3 { font-size: var(--font-size-2xl); } h4 { font-size: var(--font-size-xl); } h5 { font-size: var(--font-size-lg); } h6 { font-size: var(--font-size-md); } .eyebrow { display: block; margin-bottom: var(--space-2xs); color: var(--color-accent); font-size: 0.78rem; font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); line-height: 1.2; text-transform: uppercase; } p { margin-bottom: var(--space-sm); } p:last-child { margin-bottom: 0; } .lede { font-size: var(--font-size-lg); font-weight: var(--font-weight-light); line-height: 1.6; color: var(--color-heading); } .entry-content a { color: var(--color-link); text-decoration: underline; text-decoration-color: transparent; transition: color var(--transition-fast), text-decoration-color var(--transition-fast); } .entry-content a:hover, .entry-content a:focus { color: var(--color-link-hover); text-decoration-color: currentColor; } strong, b { font-weight: var(--font-weight-bold); } small { font-size: var(--font-size-sm); } ul, ol { padding-left: var(--space-md); margin-bottom: var(--space-sm); } blockquote { border-left: 4px solid var(--color-primary); padding-left: var(--space-sm); color: var(--color-text-muted); font-style: italic; margin-bottom: var(--space-sm); } :focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; } .site { display: flex; flex-direction: column; min-height: 100vh; } #primary { flex: 1 1 auto; } .shell { width: min(calc(100% - 48px), var(--shell-width)); margin-inline: auto; } .section { padding-block: clamp(64px, 8vw, 116px); } .deferred-section { content-visibility: auto; contain-intrinsic-size: 1px 850px; } .section-heading { display: grid; gap: 14px; margin-bottom: clamp(34px, 5vw, 54px); text-align: center; } .section-heading h1, .section-heading h2, .section-heading h3, .section-heading h4, .section-heading h5, .section-heading h6 { margin: 0; color: var(--color-heading); font-family: var(--font-display); font-size: clamp(1.85rem, 3.2vw, 2.7rem); font-weight: var(--font-weight-display-light); line-height: 1.1; letter-spacing: var(--tracking-tight); } .section-heading .eyebrow { justify-self: center; } .section-heading p { max-width: 620px; margin: 0 auto; color: var(--color-text-muted); font-size: 1.02rem; line-height: 1.65; } .screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .skip-link.screen-reader-text { z-index: var(--z-modal); } .skip-link.screen-reader-text:focus { position: fixed; top: var(--space-2xs); left: var(--space-2xs); width: auto; height: auto; clip: auto; overflow: visible; background-color: var(--color-primary); color: var(--color-white); padding: var(--space-2xs) var(--space-sm); border-radius: var(--radius-sm); text-decoration: none; } .button { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); min-height: 48px; padding: 0 30px; border: 1px solid var(--color-primary); border-radius: var(--radius-sm); background: var(--color-primary); color: var(--color-white); font-family: var(--font-body); font-size: 0.78rem; font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; line-height: 1; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base); } .button svg { width: 16px; height: 16px; transition: transform var(--transition-fast); } .button:hover, .button:focus { border-color: var(--color-primary-dark); background: var(--color-primary-dark); color: var(--color-white); } .button:hover svg { transform: translateX(3px); } .button:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; } .button--primary { border-color: var(--color-white); background: var(--color-white); color: var(--color-primary); } .button--primary:hover, .button--primary:focus { border-color: var(--color-white); background: transparent; color: var(--color-white); } .button--outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); } .button--outline:hover, .button--outline:focus { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); } .button--block { display: flex; width: 100%; } .button:disabled, .button[aria-disabled='true'] { opacity: 0.6; cursor: not-allowed; } .package-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-md); background: var(--color-surface); transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; } .package-card:hover { transform: translateY(-4px); border-color: var(--color-border-subtle); box-shadow: var(--shadow-md); } .package-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: #dfe6e9; } .package-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; } .package-card:hover .package-card__media img { transform: scale(1.025); } .package-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px 19px 19px; } .package-card h3 { margin: 0 0 8px; color: var(--color-heading); font-size: 1.08rem; font-weight: var(--font-weight-bold); line-height: 1.25; letter-spacing: -0.01em; } .package-card__description { min-height: 62px; margin: 0 0 16px; color: var(--color-text-muted); font-size: 0.83rem; line-height: 1.5; } .package-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; } .package-meta span { display: flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--radius-full); background: var(--color-background-alt); color: var(--color-text-muted); font-size: 0.74rem; font-weight: var(--font-weight-regular); } .package-meta svg { width: 13px; height: 13px; flex: 0 0 auto; color: var(--color-accent); } .package-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--color-border-subtle); } .package-price { color: var(--color-heading); font-size: 1.4rem; font-weight: var(--font-weight-bold); line-height: 1; letter-spacing: -0.01em; } @media (max-width: 620px) { .package-card { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); } .package-card:hover { transform: none; box-shadow: var(--shadow-sm); } .package-card__media { aspect-ratio: 16 / 9; } .package-card__body { padding: 14px 14px 13px; } .package-card h3 { margin-bottom: 5px; font-size: 1rem; } .package-card__description { min-height: 0; margin-bottom: 10px; font-size: 0.78rem; line-height: 1.4; } .package-meta { gap: 4px; font-size: 0.72rem; } .package-meta svg { width: 13px; height: 13px; } .package-card__footer { flex-direction: column; align-items: stretch; margin-top: 11px; gap: 10px; } .package-price { font-size: 1.25rem; } .package-card .button { width: 100%; font-size: 0.7rem; } } .gallery-tabs { display: flex; width: fit-content; max-width: 100%; margin-inline: auto; justify-content: flex-start; gap: 3px; padding: 5px; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-background-alt); scrollbar-width: none; } .gallery-tabs::-webkit-scrollbar { display: none; } .gallery-tab { flex: 0 0 auto; padding: 9px 15px; border: 0; border-radius: var(--radius-md); background: transparent; color: #63717c; font-size: 0.9rem; font-weight: 750; cursor: pointer; transition: background-color 140ms ease, color 140ms ease; } .gallery-tab[aria-selected='true'] { background: var(--color-surface); color: var(--color-heading); } .gallery-grid[hidden] { display: none; } .gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px; } .gallery-item { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border: 1px solid var(--color-border-subtle); padding: 0; border-radius: var(--radius-md); background: #dfe6e9; cursor: zoom-in; transition: box-shadow 220ms ease; } .gallery-item:hover { box-shadow: var(--shadow-sm); } .gallery-item--static { cursor: default; } .gallery-item::after { content: ''; position: absolute; inset: 0; border: 0 solid var(--color-accent); border-radius: inherit; pointer-events: none; transition: border-width 130ms ease; } .gallery-item:hover::after { border-width: 3px; } .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; } .gallery-item:hover img { transform: scale(1.025); } @media (min-width: 621px) { .gallery-tabs-block .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; } } @media (min-width: 861px) { .image-gallery-block .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; } } @media (max-width: 620px) { .gallery-tab { padding: 9px 13px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); } .gallery-tab[aria-selected='true'] { border-color: var(--color-border); background: var(--color-surface); color: var(--color-heading); box-shadow: inset 0 -2px 0 var(--color-accent); } .gallery-grid { gap: 7px; } .gallery-tabs-block .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery-item { border-radius: var(--radius-md); } .gallery-item:hover::after { border-width: 0; } .gallery-item:hover img { transform: none; } } body.modal-open { overflow: hidden; } .lightbox[hidden] { display: none; } .lightbox { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 28px; background: rgba(2, 12, 20, 0.94); } .lightbox__image { max-width: min(1200px, 90vw); max-height: 86vh; border-radius: var(--radius-lg); object-fit: contain; } .lightbox__button { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: var(--radius-md); background: rgba(7, 28, 45, 0.7); color: var(--color-white); cursor: pointer; } .lightbox__button:hover, .lightbox__button:focus { background: var(--color-white); color: var(--color-primary); } .lightbox__button svg { width: 21px; height: 21px; } .lightbox__close { top: 20px; right: 20px; } .lightbox__prev { top: 50%; left: 20px; transform: translateY(-50%); } .lightbox__next { top: 50%; right: 20px; transform: translateY(-50%); } @media (max-width: 620px) { .lightbox { padding: 16px; } .lightbox__button { width: 42px; height: 42px; } .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox__close { top: 10px; right: 10px; } } .blog-card { display: flex; flex-direction: column; transition: transform 220ms ease; } .blog-card:hover { transform: translateY(-3px); } .blog-card__media { display: block; aspect-ratio: 5 / 4; overflow: hidden; border-radius: var(--radius-md); background: #dfe6e9; } .blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; } .blog-card:hover .blog-card__media img { transform: scale(1.025); } .blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 16px 0 0; } .blog-card__categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; } .blog-card__categories a { display: inline-block; padding: 4px 11px; border-radius: var(--radius-full); background: var(--color-background-alt); color: var(--color-primary-dark); font-size: 0.7rem; font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none; transition: background-color var(--transition-fast); } .blog-card__categories a:hover, .blog-card__categories a:focus { background: var(--color-accent-tint); color: var(--color-accent-dark); } .blog-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.3rem; font-weight: var(--font-weight-display-medium); line-height: 1.25; letter-spacing: -0.01em; } .blog-card h3 a { color: var(--color-heading); text-decoration: none; } .blog-card h3 a:hover, .blog-card h3 a:focus { text-decoration: underline; } .blog-card__excerpt { min-height: 62px; margin: 0 0 16px; color: var(--color-text-muted); font-size: 0.83rem; line-height: 1.5; } .blog-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; } .blog-card__date { color: var(--color-text-muted); font-size: 0.72rem; letter-spacing: 0.03em; text-transform: uppercase; } .package-card .button, .blog-card .button { min-height: 38px; padding-inline: 14px; font-size: 0.76rem; } @media (max-width: 620px) { .package-card .button { min-height: 44px; } } .blog-card .button { min-height: auto; padding: 15px 0; margin-block: -15px; border: 0; background: transparent; color: var(--color-heading); font-size: 0.78rem; font-weight: var(--font-weight-bold); letter-spacing: 0.02em; } .blog-card .button:hover, .blog-card .button:focus { background: transparent; border-color: transparent; color: var(--color-accent-dark); } .blog-card .button svg { width: 15px; height: 15px; transition: transform 160ms ease; } .blog-card .button:hover svg, .blog-card .button:focus svg { transform: translateX(3px); } .trustindex-source { margin-bottom: var(--space-2xl); } .trustindex-source:last-child { margin-bottom: 0; } .trustindex-source + .trustindex-source { padding-top: var(--space-2xl); border-top: 1px solid var(--color-border-subtle); } .trustindex-source__link { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-md); padding: 9px 18px; border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-heading); font-size: 0.82rem; font-weight: var(--font-weight-bold); text-decoration: none; transition: background-color var(--transition-fast), border-color var(--transition-fast); } .trustindex-source__link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); } .trustindex-source__link:hover, .trustindex-source__link:focus { border-color: var(--color-primary); background-color: var(--color-soft); } .trustindex-source__link:hover svg, .trustindex-source__link:focus svg { transform: translateX(2px); } .trustindex-source__link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; } .trustindex-placeholder-notice { padding: var(--space-md); border: 1px dashed var(--color-border); border-radius: var(--radius-md); background: var(--color-background-alt); color: var(--color-text-muted); font-size: 0.85rem; text-align: center; } .whatsapp-widget { position: fixed; right: 20px; bottom: calc(20px + var(--whatsapp-lift, 0px)); z-index: var(--z-whatsapp-button); transition: bottom 250ms ease; } .whatsapp-float { position: relative; display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: var(--radius-full); background: #25d366; color: var(--color-white); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); transition: transform 150ms ease, box-shadow 150ms ease; } .whatsapp-float svg { width: 30px; height: 30px; } .whatsapp-float:hover, .whatsapp-float:focus { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); } .whatsapp-float:focus-visible { outline: 3px solid var(--color-white); outline-offset: 3px; } .whatsapp-popup { position: absolute; right: 0; bottom: calc(100% + 16px); width: min(300px, calc(100vw - 40px)); padding: var(--space-sm) var(--space-sm) var(--space-md); background: var(--color-white); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); } .whatsapp-popup[hidden] { display: none; } .whatsapp-popup__close { position: absolute; top: 8px; right: 8px; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: none; border-radius: var(--radius-full); background: transparent; color: var(--color-text-muted); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background-color var(--transition-fast), color var(--transition-fast); } .whatsapp-popup__close:hover, .whatsapp-popup__close:focus-visible { background: var(--color-background-alt); color: var(--color-heading); } .whatsapp-popup__close:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; } .whatsapp-popup__text { margin: 0 0 var(--space-sm); padding-right: 20px; color: var(--color-text); font-size: 0.9rem; line-height: 1.55; } .whatsapp-popup__cta.button { border-color: #25d366; background: #25d366; } .whatsapp-popup__cta.button:hover, .whatsapp-popup__cta.button:focus { border-color: #1ebe5b; background: #1ebe5b; } @media (max-width: 620px) { .whatsapp-widget { right: 14px; bottom: calc(14px + var(--whatsapp-lift, 0px)); } .whatsapp-float { width: 52px; height: 52px; } .whatsapp-float svg { width: 26px; height: 26px; } .whatsapp-popup { bottom: calc(100% + 12px); width: min(280px, calc(100vw - 28px)); } } .contact-form-card .wpforms-container { --wpforms-button-background-color: var(--color-primary); --wpforms-button-border-color: var(--color-primary); --wpforms-button-text-color: var(--color-white); } .contact-form-card .wpforms-field { margin-bottom: var(--space-lg); } .contact-form-card .wpforms-field-label { margin-bottom: var(--space-3xs); color: var(--color-heading); font-family: var(--font-body); font-size: 0.88rem; font-weight: var(--font-weight-medium); } .contact-form-card .wpforms-field-sublabel { margin-top: var(--space-3xs); color: var(--color-text-muted); font-size: 0.76rem; } .contact-form-card .wpforms-required-label { color: var(--color-accent); } .contact-form-card .wpforms-field input:not([type='checkbox']):not([type='radio']), .contact-form-card .wpforms-field textarea { min-height: 48px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 12px 14px; background: var(--color-white); color: var(--color-text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); } .contact-form-card .wpforms-field textarea { min-height: 120px; } .contact-form-card .wpforms-field select { min-height: 48px; overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 12px 40px 12px 14px; background-color: var(--color-white); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; color: var(--color-text); font-family: var(--font-body); font-size: 0.95rem; text-overflow: ellipsis; white-space: nowrap; appearance: none; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); } .contact-form-card .wpforms-field input:not([type='checkbox']):not([type='radio']):focus, .contact-form-card .wpforms-field select:focus, .contact-form-card .wpforms-field textarea:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08); } .contact-form-card .wpforms-error { color: var(--color-error); font-size: 0.85rem; } .contact-form-card .wpforms-field input.wpforms-error, .contact-form-card .wpforms-field select.wpforms-error, .contact-form-card .wpforms-field textarea.wpforms-error { border-color: var(--color-error); } .contact-form-card .wpforms-error-container { color: var(--color-error); } .contact-form-card .wpforms-submit { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 30px; border: 1px solid var(--color-primary); border-radius: var(--radius-sm); background: var(--color-primary); color: var(--color-white); font-family: var(--font-body); font-size: 0.78rem; font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; cursor: pointer; transition: background-color var(--transition-base), border-color var(--transition-base); } .contact-form-card .wpforms-submit:hover, .contact-form-card .wpforms-submit:focus { border-color: var(--color-primary-dark); background: var(--color-primary-dark); } .contact-form-card .wpforms-submit:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; } @media (max-width: 860px) { :root { --header-height: 68px; } .shell { width: min(calc(100% - 34px), var(--shell-width)); } } @media (max-width: 620px) { .section { padding-block: 52px; } .shell { width: min(calc(100% - 28px), var(--shell-width)); } .section-heading { margin-bottom: 25px; } .section-heading h2 { font-size: 1.85rem; } .section-heading p { font-size: 0.9rem; } } .utility-bar { min-height: 34px; background: var(--color-primary-dark); color: rgba(255, 255, 255, 0.82); font-size: 0.76rem; letter-spacing: 0.01em; } .utility-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-block: 9px; row-gap: 8px; min-height: 34px; gap: 18px; } .utility-bar__contacts { display: flex; align-items: center; gap: 22px; min-width: 0; } .utility-bar__socials { display: flex; align-items: center; gap: 15px; min-width: 0; } .utility-bar a { display: inline-flex; align-items: center; gap: 7px; max-width: 100%; overflow-wrap: anywhere; text-decoration: none; } .utility-bar a:hover, .utility-bar a:focus { color: #fff; } .utility-bar__contacts a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color var(--transition-fast), text-decoration-color var(--transition-fast); } .utility-bar__contacts a:hover, .utility-bar__contacts a:focus { text-decoration-color: currentColor; } .utility-bar__contacts a[href^='tel:'] { color: #fff; font-weight: var(--font-weight-medium); } .utility-bar__contacts a[href^='mailto:'] { color: rgba(255, 255, 255, 0.62); } .utility-bar__socials a { padding: 10px; margin: -10px; transition: color var(--transition-fast), transform var(--transition-fast); } .utility-bar__socials a:hover, .utility-bar__socials a:focus { transform: translateY(-1px); } .utility-bar svg { width: 14px; height: 14px; } @media (max-width: 860px) { .utility-bar { min-height: 40px; } .utility-bar__inner { justify-content: center; flex-wrap: nowrap; gap: 0; padding-block: 0; } .utility-bar__contacts { gap: 14px; flex: 0 1 auto; min-width: 0; } .utility-bar__text { display: none; } .utility-bar__contacts a[href^='tel:'] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .utility-bar svg { width: 15px; height: 15px; } .utility-bar__contacts:not(:only-child) { position: relative; padding-right: 14px; } .utility-bar__contacts:not(:only-child)::after { content: ''; position: absolute; top: 50%; right: 0; width: 1px; height: 16px; transform: translateY(-50%); background: rgba(255, 255, 255, 0.2); } } .site-header { position: sticky; top: 0; z-index: var(--z-header); isolation: isolate; border-bottom: 1px solid var(--color-border-subtle); background: var(--color-surface); } .site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); gap: 44px; } @media (max-width: 860px) { .site-header__inner { gap: 16px; } } .site-logo { display: flex; flex: 0 0 auto; align-items: center; justify-content: flex-start; width: 220px; height: 58px; text-decoration: none; } .site-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } .site-logo__text { font-family: var(--font-heading); font-weight: var(--font-weight-heavy); font-size: var(--font-size-lg); color: var(--color-heading); } .site-nav { display: flex; align-items: center; gap: 38px; z-index: var(--z-nav); } .site-nav a { position: relative; padding-block: 27px; color: var(--color-heading); font-size: 0.8rem; font-weight: var(--font-weight-bold); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; } .site-nav a::after { content: ''; position: absolute; right: 30%; bottom: 20px; left: 30%; height: 2px; border-radius: var(--radius-full); background: var(--color-accent); transform: scaleX(0); transform-origin: right; transition: transform 160ms ease; } .site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; } .site-header__controls { display: flex; flex: 0 1 auto; min-width: 0; align-items: center; gap: 13px; } .site-header__language-switcher { display: flex; align-items: center; min-width: 0; } .trp_language_switcher_shortcode { min-width: 0; } .trp-language-switcher { max-width: 100%; } .trp-ls-shortcode-current-language { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .trp-language-switcher .trp-ls-shortcode-language { position: absolute; z-index: var(--z-nav); display: none; width: max-content !important; min-width: 170px; max-width: min(240px, calc(100vw - 32px)); padding: 8px; border-radius: 0 0 var(--radius-md) var(--radius-md); border: 1px solid var(--color-border-subtle); background-color: var(--color-white); background-image: none; box-shadow: var(--shadow-md); } .trp-language-switcher .trp-ls-shortcode-language > a { display: flex; align-items: center; padding: 9px 12px; border-radius: var(--radius-sm); color: var(--color-text); font-size: 0.88rem; font-weight: var(--font-weight-medium); line-height: 1.3; white-space: nowrap; transition: background-color var(--transition-fast), color var(--transition-fast); } .trp-language-switcher .trp-ls-shortcode-language > a:hover, .trp-language-switcher .trp-ls-shortcode-language > a:focus { background-color: var(--color-accent-tint); color: var(--color-accent); } .trp-language-switcher .trp-ls-shortcode-language > a.trp-ls-shortcode-disabled-language { display: none; } .trp-ls-shortcode-current-language { width: auto !important; } .trp-language-switcher > .trp-ls-shortcode-current-language { position: relative; padding: 11px 20px 11px 0; border: none; background-color: transparent; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; background-size: 12px; } .trp-language-switcher > .trp-ls-shortcode-current-language a { color: var(--color-text); font-size: 0.8rem; font-weight: var(--font-weight-bold); letter-spacing: 0.02em; } .trp-language-switcher .trp-ls-shortcode-current-language a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; } .trp-language-switcher:hover .trp-ls-shortcode-language, .trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:focus-within .trp-ls-shortcode-language, .trp-language-switcher.is-open .trp-ls-shortcode-language { top: 100%; left: auto; right: 0; } .trp-language-switcher.is-open .trp-ls-shortcode-language, .trp-language-switcher:focus-within .trp-ls-shortcode-language { display: block !important; visibility: visible; height: auto; min-height: auto; } .trp-language-switcher:hover .trp-ls-shortcode-current-language, .trp-language-switcher:focus .trp-ls-shortcode-current-language, .trp-language-switcher:focus-within .trp-ls-shortcode-current-language, .trp-language-switcher.is-open .trp-ls-shortcode-current-language { visibility: visible; } .trp-language-switcher:hover .trp-ls-shortcode-language, .trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:focus-within .trp-ls-shortcode-language, .trp-language-switcher.is-open .trp-ls-shortcode-language { max-height: none; overflow: visible; } .error-404__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; } @media (max-width: 620px) { .error-404__actions { flex-direction: column; align-items: stretch; } } .menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: var(--radius-sm); background: transparent; color: var(--color-primary); cursor: pointer; transition: background-color var(--transition-fast); } .menu-toggle:hover, .menu-toggle:focus { background: var(--color-soft); } .menu-toggle:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; } .menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; } .menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; } .menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (max-width: 860px) { .site-logo { width: 190px; height: 48px; } .menu-toggle { display: block; } .site-nav { position: absolute; top: 100%; right: 0; left: 0; z-index: 10002; display: grid; gap: 0; max-height: 0; margin: 8px 12px 0; overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: max-height 190ms ease, opacity 150ms ease, visibility 150ms ease; } .site-nav.is-open { max-height: 280px; opacity: 1; visibility: visible; } .site-nav a { padding: 15px 20px; border-top: 1px solid var(--color-border); } .site-nav a:first-child { border-top: 0; } .site-nav a::after { display: none; } } @media (max-width: 620px) { .site-logo { width: 170px; height: 42px; } } @media (max-width: 360px) { .site-logo { width: 132px; height: 34px; } } .surfcamp-breadcrumbs { padding-block: var(--space-sm) 0; font-size: 0.82rem; } .surfcamp-breadcrumbs #rank-math-breadcrumb { margin: 0; color: var(--color-text-muted); } .surfcamp-breadcrumbs #rank-math-breadcrumb a { color: var(--color-text-muted); text-decoration: underline; text-decoration-color: transparent; transition: color var(--transition-fast), text-decoration-color var(--transition-fast); } .surfcamp-breadcrumbs #rank-math-breadcrumb a:hover, .surfcamp-breadcrumbs #rank-math-breadcrumb a:focus { color: var(--color-heading); text-decoration-color: currentColor; } .site-footer { padding-block: 54px 24px; background: var(--color-background-alt); color: var(--color-text-muted); } .footer-grid { display: grid; grid-template-columns: minmax(240px, 1.1fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr) minmax(170px, 0.7fr); gap: 44px; padding-bottom: 38px; border-bottom: 1px solid var(--color-border-subtle); } .footer-grid > * { min-width: 0; } .footer-map { aspect-ratio: 4 / 3; } .footer-brand > a { display: flex; align-items: center; justify-content: flex-start; width: 240px; height: 80px; margin-bottom: 18px; text-decoration: none; } .footer-brand img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } .footer-brand p { max-width: 380px; margin: 0 0 16px; font-size: 0.86rem; line-height: 1.7; } .footer-social { display: flex; align-items: center; justify-content: flex-start; gap: 12px; } .footer-social a { display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); transition: color var(--transition-fast), transform var(--transition-fast); } .footer-social a:hover, .footer-social a:focus-visible { color: var(--color-primary); transform: translateY(-2px); } .footer-social a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; } .footer-social svg { width: 18px; height: 18px; } .footer-column h2 { margin: 0 0 18px; color: var(--color-heading); font-size: 0.76rem; font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; } .footer-column ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; } .footer-column a { font-size: 0.84rem; text-decoration: none; } .footer-column a:hover, .footer-column a:focus { color: var(--color-heading); text-decoration: underline; } .footer-payment { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--color-border-subtle); } .footer-payment img { height: 24px; width: auto; filter: grayscale(100%) brightness(1.6); opacity: 0.75; transition: opacity 160ms ease, filter 160ms ease; } .footer-payment img:hover { filter: none; opacity: 1; } .footer-payment__text { color: var(--color-text-muted); font-size: 0.72rem; font-weight: var(--font-weight-medium); text-transform: uppercase; letter-spacing: 0.06em; } .copyright { margin: 20px 0 0; color: var(--color-text-muted); font-size: 0.72rem; text-align: center; } @media (max-width: 860px) { .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px 28px; } .footer-brand, .footer-column--map { grid-column: 1 / -1; } .footer-map { aspect-ratio: 16 / 9; } } @media (max-width: 620px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; } .footer-brand > a { width: 220px; height: 72px; } .footer-brand p { font-size: 0.82rem; } } .package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } @media (max-width: 860px) { .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (max-width: 620px) { .package-grid { grid-template-columns: 1fr; gap: 14px; } } .package-slider { position: relative; } .package-slider__track { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-block: 6px; margin-block: -6px; } .package-slider__track::-webkit-scrollbar { display: none; } .package-slider__track > .package-card { flex: 0 0 auto; width: calc((100% - 56px) / 3); scroll-snap-align: start; } .package-slider__nav { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-full); background: var(--color-white); color: var(--color-primary); box-shadow: var(--shadow-md); cursor: pointer; transform: translateY(-50%); transition: background-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast); } .package-slider__nav:hover, .package-slider__nav:focus-visible { background: var(--color-primary); color: var(--color-white); } .package-slider__nav:disabled { opacity: 0.35; cursor: default; pointer-events: none; } .package-slider__nav svg { width: 20px; height: 20px; } .package-slider__nav--prev { left: -24px; } .package-slider__nav--next { right: -24px; } @media (max-width: 860px) { .package-slider__track > .package-card { width: calc((100% - 28px) / 2); } .package-slider__nav { width: 42px; height: 42px; } .package-slider__nav--prev { left: -12px; } .package-slider__nav--next { right: -12px; } } @media (max-width: 620px) { .package-slider__track { gap: 14px; } .package-slider__track > .package-card { width: 82%; } .package-slider { margin-top: 64px; } .package-slider__nav { top: -52px; bottom: auto; transform: none; } .package-slider__nav--prev { left: auto; right: 62px; } .package-slider__nav--next { right: 0; } } .package-content { max-width: 800px; margin-inline: auto; } .package-content > .eyebrow { display: block; margin-bottom: var(--space-2xs); } .package-content .entry-content > p:first-child { margin-bottom: var(--space-md); color: var(--color-heading); font-size: var(--font-size-lg); font-weight: var(--font-weight-light); line-height: 1.55; } .package-included { margin-top: var(--space-2xl); padding-top: var(--space-2xl); border-top: 1px solid var(--color-border-subtle); } .package-included h2 { margin: 0 0 var(--space-md); font-family: var(--font-display); } .package-included__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; } .package-included__list li { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 14px 16px; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-md); background: var(--color-surface); font-size: 0.92rem; font-weight: var(--font-weight-medium); line-height: 1.4; color: var(--color-text); transition: border-color 200ms ease, box-shadow 200ms ease; } .package-included__list li:hover { border-color: var(--color-border-subtle); box-shadow: var(--shadow-sm); } .package-included__icon { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: var(--radius-full); background: var(--color-background-alt); color: var(--color-accent); } .package-included__icon svg { width: 16px; height: 16px; } .package-closing-cta__book { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; padding: 22px 32px; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); background: var(--color-surface); } .package-closing-cta__book .page-hero__price span { color: var(--color-text-muted); } .package-closing-cta__book .page-hero__price strong { color: var(--color-heading); } .package-gallery-section { background: var(--color-background-alt); } @media (max-width: 620px) { .package-section { padding-block: 36px; } .package-included { margin-top: var(--space-xl); padding-top: var(--space-xl); } .package-closing-cta__book { flex-direction: column; width: 100%; } .package-closing-cta__book .button { width: 100%; } } .hero { position: relative; isolation: isolate; display: flex; align-items: center; overflow: hidden; color: var(--color-white); background: #061827; min-height: clamp(650px, 78svh, 820px); height: auto; padding-block: clamp(88px, 9vw, 132px) clamp(72px, 8vw, 108px); } .hero__media, .hero__media img, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; } .hero__media { z-index: -3; } .hero__media img { object-fit: cover; object-position: 58% 53%; filter: saturate(1.04) contrast(1.03); transform: scale(1.01); } .hero__video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 58% 53%; } .hero__shade { z-index: -2; background: radial-gradient(ellipse 1100px 750px at 50% 50%, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.26) 40%, rgba(0, 0, 0, 0.1) 64%, rgba(0, 0, 0, 0) 82%); } .hero .shell { position: relative; z-index: 1; display: flex; justify-content: center; } .hero__content { display: flex; flex-direction: column; align-items: center; width: min(560px, 82%); max-width: 560px; text-align: center; } .hero__tagline { display: flex; align-items: center; justify-content: center; gap: 12px; width: fit-content; margin: 0 0 18px; color: var(--color-white); font-size: 0.72rem; font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); line-height: 1.2; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); } .hero__tagline::before { content: ''; width: 44px; height: 2px; flex: 0 0 auto; background: var(--color-accent); } .hero h1 { max-width: 100%; margin: 0; color: var(--color-white); font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: var(--font-weight-display-light); line-height: 1.1; letter-spacing: var(--tracking-tight); text-wrap: balance; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 10px 32px rgba(0, 0, 0, 0.35); } .hero__description { max-width: 46ch; margin: 18px 0 0; color: rgba(255, 255, 255, 0.94); font-size: clamp(0.92rem, 1.1vw, 1rem); font-weight: var(--font-weight-medium); line-height: 1.6; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3); } .hero .button { min-height: 52px; margin-top: 34px; padding-inline: 30px; border-color: var(--color-white); background: var(--color-white); color: var(--color-primary); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); } .hero .button:hover, .hero .button:focus { border-color: var(--color-white); background: transparent; color: var(--color-white); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22); } @media (max-width: 1120px) { .hero__content { width: min(520px, 74%); } .hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.6rem); } } @media (max-width: 860px) { .hero { min-height: 640px; padding-block: 150px 58px; } .hero__media img { object-position: 58% center; } .hero__content { width: min(480px, 82%); } .hero h1 { font-size: clamp(1.8rem, 5.6vw, 2.3rem); line-height: 1.08; } .hero__description { max-width: 40ch; } } @media (max-width: 620px) { .hero { min-height: 0; height: 40svh; max-height: 40svh; padding-block: 18px; align-items: center; } .hero__media img { object-position: 58% 48%; transform: none; } .hero .shell { width: min(calc(100% - 28px), var(--shell-width)); } .hero__content { width: min(84%, 330px); max-width: 330px; } .hero__tagline { margin-bottom: 7px; font-size: 0.56rem; line-height: 1.2; letter-spacing: 0.11em; } .hero__tagline::before { width: 20px; } .hero h1 { max-width: 16ch; font-size: clamp(1.35rem, 6.2vw, 1.7rem); line-height: 1.1; letter-spacing: -0.02em; } .hero__description { max-width: 32ch; margin-top: 9px; font-size: clamp(0.72rem, 2.8vw, 0.84rem); line-height: 1.35; } .hero .button { min-height: 39px; margin-top: 12px; padding-inline: 14px; gap: 10px; font-size: 0.72rem; border-radius: var(--radius-sm); } .hero .button svg { width: 15px; height: 15px; } } @media (max-width: 620px) and (max-height: 700px) { .hero { height: 40svh; max-height: 40svh; padding-block: 12px; } .hero__tagline { margin-bottom: 5px; } .hero h1 { font-size: clamp(1.4rem, 7vw, 1.8rem); } .hero__description { margin-top: 7px; font-size: 0.7rem; line-height: 1.28; } .hero .button { min-height: 35px; margin-top: 9px; padding-inline: 12px; font-size: 0.67rem; } } .about { background: var(--color-surface); } .about__grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(48px, 6vw, 96px); } .about__grid.about__grid--text-only { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; text-align: center; } .about__content p { color: var(--color-text-muted); font-size: 1rem; line-height: 1.8; } .about__content .entry-content > p:first-child { margin-bottom: var(--space-md); color: var(--color-heading); font-size: var(--font-size-lg); font-weight: var(--font-weight-light); line-height: 1.55; } .about__content .entry-content > p:first-child::first-letter { float: left; margin: 2px 9px 0 0; font-family: var(--font-display); font-size: 3em; font-weight: var(--font-weight-display-medium); line-height: 0.85; color: var(--color-heading); } .about__content .button { margin-top: var(--space-lg); } .about__media { position: relative; } .about__media::before { content: ''; position: absolute; z-index: -1; inset: 22px -22px -22px 22px; border: 1px solid var(--color-accent); border-radius: var(--radius-lg); } .about__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); } .about__media--video { max-width: 340px; margin-inline: auto; } .about__video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius-lg); background: var(--color-black); } @media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; gap: 28px; } .about__content { text-align: center; } .about__media { max-width: 460px; margin-inline: auto; } .about__media img { aspect-ratio: 16 / 9; } .about__media--video { max-width: 260px; } .about__media::before { inset: 14px -14px -14px 14px; } } .packages { background: var(--color-background-alt); } .homepage-gallery { background: var(--color-surface); } .reviews { background: var(--color-soft); } .reviews .section-heading { position: relative; margin-bottom: clamp(36px, 5vw, 52px); } .reviews .section-heading::after { content: ''; display: block; width: 32px; height: 2px; margin: clamp(20px, 3vw, 28px) auto 0; background: var(--color-accent); } .reviews .trustindex-wrapper { max-width: 900px; margin-inline: auto; padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--color-surface); } .cta-section { padding-block: clamp(46px, 6vw, 76px); background: var(--color-surface); } .cta-section__inner { display: grid; grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr); align-items: start; gap: clamp(28px, 6vw, 80px); padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px); border-top: 3px solid var(--color-accent); border-radius: var(--radius-sm); background: var(--color-background-alt); } .cta-section h2 { margin: 0; font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: var(--font-weight-display-light); line-height: 1.08; letter-spacing: -0.02em; } .cta-section__text p { margin: 0; color: var(--color-text-muted); line-height: 1.75; } .cta-section__text p + p { margin-top: 10px; color: var(--color-heading); font-weight: var(--font-weight-bold); } .cta-section__text .button { margin-top: var(--space-lg); } .cta-section strong { color: var(--color-heading); } @media (max-width: 860px) { .cta-section__inner { grid-template-columns: 1fr; gap: 22px; } } @media (max-width: 620px) { .cta-section { padding-block: 48px; } .cta-section__inner { padding: 25px 21px; border-radius: var(--radius-lg); } .cta-section h2 { font-size: 2rem; } .cta-section__text p { font-size: 0.92rem; line-height: 1.65; } } .page-hero { background: var(--color-background-alt); text-align: center; } .page-hero--photo { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: clamp(420px, 46vw, 600px); padding-block: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 52px); color: var(--color-white); background: #061827; text-align: left; } .page-hero--photo .page-hero__media, .page-hero--photo .page-hero__media img, .page-hero--photo .page-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; } .page-hero--photo .page-hero__media { z-index: -2; } .page-hero--photo .page-hero__media img { object-fit: cover; object-position: center 45%; } .page-hero--photo .page-hero__shade { z-index: -1; background: radial-gradient(ellipse 780px 560px at 8% 100%, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.28) 32%, rgba(0, 0, 0, 0.1) 56%, rgba(0, 0, 0, 0) 76%); } .page-hero--photo:has(.page-hero__meta-row) .page-hero__shade { background: radial-gradient(ellipse 900px 640px at 6% 100%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 34%, rgba(0, 0, 0, 0.14) 60%, rgba(0, 0, 0, 0) 82%), linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0) 70%); } .page-hero--photo .shell { position: relative; z-index: 1; } .page-hero__content { width: 100%; } .page-hero--photo .page-hero__content { padding-right: var(--space-xl); } @media (max-width: 860px) { .page-hero--photo .page-hero__content { padding-right: var(--space-sm); padding-left: var(--space-sm); } } .page-hero--photo .surfcamp-breadcrumbs { padding-block: 0 0; margin: 0 0 var(--space-sm); } .page-hero--photo .surfcamp-breadcrumbs #rank-math-breadcrumb, .page-hero--photo .surfcamp-breadcrumbs #rank-math-breadcrumb a { color: rgba(255, 255, 255, 0.72); } .page-hero--photo .surfcamp-breadcrumbs #rank-math-breadcrumb a:hover, .page-hero--photo .surfcamp-breadcrumbs #rank-math-breadcrumb a:focus { color: var(--color-white); } .page-hero--photo .eyebrow { display: flex; align-items: center; gap: 12px; width: fit-content; color: var(--color-white); text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); } .page-hero--photo .eyebrow::before { content: ''; width: 32px; height: 2px; flex: 0 0 auto; background: var(--color-accent); } .page-hero--photo h1 { margin: 0; color: var(--color-white); font-family: var(--font-display); font-size: clamp(2.3rem, 4.4vw, 3.6rem); line-height: 1.05; text-wrap: balance; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 10px 32px rgba(0, 0, 0, 0.35); } .page-hero--photo .page-hero__lede { max-width: 56ch; margin: var(--space-sm) 0 0; color: rgba(255, 255, 255, 0.92); font-size: 1.05rem; font-weight: var(--font-weight-medium); line-height: 1.6; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3); } .page-hero__meta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; margin-top: var(--space-lg); padding: 20px 24px; border-radius: var(--radius-lg); background: rgba(10, 10, 10, 0.4); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); } .page-hero--photo .package-meta { margin: 0; gap: 22px; } .page-hero--photo .package-meta span { padding: 0; border: 0; background: none; gap: 8px; color: var(--color-white); font-size: 0.85rem; font-weight: var(--font-weight-medium); } .page-hero--photo .package-meta svg { color: rgba(255, 255, 255, 0.8); } .page-hero__book { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; } .page-hero__book .button { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); } .page-hero__price { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; } .page-hero__price span { color: rgba(255, 255, 255, 0.68); font-size: 0.72rem; font-weight: var(--font-weight-bold); letter-spacing: 0.04em; text-transform: uppercase; } .page-hero__price strong { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: var(--font-weight-bold); color: var(--color-white); line-height: 1; letter-spacing: -0.02em; } @media (max-width: 620px) { .page-hero--photo { min-height: 380px; padding-block: 32px; } .page-hero--photo h1 { font-size: clamp(2rem, 8vw, 2.6rem); } .page-hero--photo .page-hero__lede { max-width: none; font-size: 0.94rem; } .page-hero__meta-row { flex-direction: column; align-items: stretch; gap: 16px; margin-top: var(--space-md); padding: 16px 18px; } .page-hero--photo .package-meta { gap: 12px; } .page-hero__book { flex-direction: column; align-items: stretch; gap: 12px; } .page-hero__book .button { width: 100%; } } .page-hero--photo:not(:has(.page-hero__meta-row)) { min-height: clamp(200px, 17vw, 250px); padding-block: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px); } .page-hero--photo:not(:has(.page-hero__meta-row)) h1 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); line-height: 1.08; } .page-hero--photo:not(:has(.page-hero__meta-row)) .page-hero__lede { margin-top: var(--space-2xs); font-size: 0.95rem; line-height: 1.55; } .page-hero--photo:not(:has(.page-hero__meta-row)) .page-hero__shade { background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0) 65%), linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0) 100%); } .page-hero--photo:not(:has(.page-hero__meta-row)) .eyebrow, .page-hero--photo:not(:has(.page-hero__meta-row)) h1, .page-hero--photo:not(:has(.page-hero__meta-row)) .page-hero__lede { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 5px 14px rgba(0, 0, 0, 0.28); } @media (max-width: 860px) { .page-hero--photo:not(:has(.page-hero__meta-row)) { min-height: clamp(200px, 24vw, 230px); } } @media (max-width: 620px) { .page-hero--photo:not(:has(.page-hero__meta-row)) { min-height: 190px; padding-block: 18px; } .page-hero--photo:not(:has(.page-hero__meta-row)) .page-hero__shade { background: linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 55%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0) 100%); } } .page-intro { max-width: 780px; margin-inline: auto; text-align: center; } .page-intro .eyebrow { display: block; margin-bottom: var(--space-2xs); } .page-intro .entry-content { text-align: left; } .page-intro .entry-content > p:first-child { margin-bottom: var(--space-md); color: var(--color-heading); font-size: var(--font-size-lg); font-weight: var(--font-weight-light); line-height: 1.55; text-align: center; } .room-types { background: var(--color-surface); } .facilities { background: var(--color-background-alt); } .room-type-group + .room-type-group { margin-top: clamp(64px, 8vw, 100px); } .room-type-group h3 { margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--color-border); font-family: var(--font-display); font-size: var(--font-size-2xl); } .room-entry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); row-gap: clamp(40px, 5vw, 64px); column-gap: var(--space-lg); } .facility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); row-gap: clamp(40px, 5vw, 64px); column-gap: var(--space-lg); } .room-entry__header { margin-bottom: var(--space-md); } .room-entry h4 { margin: 0; font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: var(--font-weight-display-medium); letter-spacing: -0.01em; } @media (min-width: 861px) { .room-entry-grid, .facility-grid { grid-template-columns: repeat(auto-fit, minmax(460px, 1fr)); } .room-entry .gallery-grid, .facility-card .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } } .facility-card__header { display: flex; align-items: center; gap: var(--space-2xs); margin-bottom: var(--space-sm); } .facility-card__header::before { content: ''; flex: 0 0 auto; width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--color-accent); } .facility-card h4 { margin: 0; font-size: var(--font-size-md); font-weight: var(--font-weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; } @media (max-width: 620px) { .accommodation-section, .contact-section, .blog-section, .booking-section { padding-block: 40px; } .room-entry-grid, .facility-grid { row-gap: var(--space-xl); } } .cta-section__inner--centered { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; text-align: center; } .home-blog-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); } .home-blog-grid .blog-card { flex: 1 1 250px; max-width: 270px; } .home-blog-grid .blog-card__body { padding: 14px 0 0; } .home-blog-grid .blog-card h3 { font-size: 1.05rem; } .home-blog-grid .blog-card__excerpt { display: -webkit-box; min-height: 0; margin-bottom: 12px; overflow: hidden; font-size: 0.8rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .home-blog-grid .blog-card .button { font-size: 0.72rem; } @media (max-width: 620px) { .home-blog-grid { flex-wrap: nowrap; justify-content: flex-start; gap: var(--space-sm); overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; padding-bottom: 6px; } .home-blog-grid .blog-card { flex: 0 0 84%; max-width: 84%; scroll-snap-align: center; } } .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); margin-bottom: var(--space-xl); } @media (min-width: 621px) { .blog-section:not(.related-articles) .blog-grid > .blog-card:first-child { grid-column: span 2; } .blog-section:not(.related-articles) .blog-grid > .blog-card:first-child .blog-card__media { aspect-ratio: 21 / 9; } .blog-section:not(.related-articles) .blog-grid > .blog-card:first-child h3 { font-size: 1.7rem; } } .related-articles { background: var(--color-background-alt); } .blog-post__content { max-width: 760px; margin-inline: auto; } .blog-post__content .entry-content { font-size: 1.05rem; line-height: 1.85; color: var(--color-text); } .blog-post__content .entry-content > p { margin-bottom: var(--space-md); } .blog-post__content .entry-content h2, .blog-post__content .entry-content h3, .blog-post__content .entry-content h4 { margin-top: var(--space-xl); font-family: var(--font-display); font-weight: var(--font-weight-display-medium); letter-spacing: -0.01em; } .blog-post__content .entry-content img { margin-block: var(--space-lg); border-radius: var(--radius-md); } .blog-post__content .entry-content blockquote { margin-block: var(--space-lg); padding: var(--space-sm) 0 var(--space-sm) var(--space-md); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.6; } .blog-post__content .entry-content .wp-caption, .blog-post__content .entry-content figure { margin-block: var(--space-lg); max-width: 100%; } .blog-post__content .entry-content .wp-caption img, .blog-post__content .entry-content figure img { display: block; width: 100%; margin-block: 0; border-radius: var(--radius-md); } .blog-post__content .entry-content .wp-caption-text, .blog-post__content .entry-content figcaption { margin-top: var(--space-2xs); color: var(--color-text-muted); font-size: 0.85rem; line-height: 1.5; text-align: center; } .blog-post__content .entry-content .alignleft { float: left; margin: 4px var(--space-md) var(--space-sm) 0; max-width: 50%; } .blog-post__content .entry-content .alignright { float: right; margin: 4px 0 var(--space-sm) var(--space-md); max-width: 50%; } .blog-post__content .entry-content .aligncenter { display: block; margin-inline: auto; } .blog-post__categories { margin-bottom: var(--space-md); } .blog-post__date { display: inline-block; margin-top: var(--space-sm); color: var(--color-text-muted); font-size: var(--font-size-sm); } .page-hero--photo .blog-post__date { color: rgba(255, 255, 255, 0.8); } .pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2xs); } .pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding-inline: var(--space-2xs); border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-heading); font-size: var(--font-size-sm); font-weight: var(--font-weight-medium); text-decoration: none; transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); } .pagination .page-numbers.dots { border-color: transparent; } .pagination .page-numbers:hover, .pagination .page-numbers:focus, .pagination .page-numbers.current { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); } .contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); } @media (max-width: 620px) { .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-sm); } .contact-info-card { min-width: 0; padding: var(--space-md) var(--space-xs); } } .contact-info-card { display: flex; flex-direction: column; align-items: center; gap: var(--space-2xs); padding: var(--space-sm) var(--space-xs); text-align: center; } .contact-info-card__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: var(--space-2xs); border-radius: var(--radius-full); background: var(--color-background-alt); color: var(--color-accent); } .contact-info-card__icon svg { width: 22px; height: 22px; } .contact-info-card h3 { margin: 0; color: var(--color-heading); font-size: var(--font-size-md); font-weight: var(--font-weight-bold); } .contact-info-card a, .contact-info-card__text { overflow-wrap: anywhere; color: var(--color-text-muted); font-size: var(--font-size-sm); } .contact-info-card a:hover, .contact-info-card a:focus { color: var(--color-primary); } .contact-form-map-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: clamp(48px, 6vw, 96px); } .contact-form-map-grid--single { grid-template-columns: minmax(0, 1fr); max-width: 720px; margin-inline: auto; } .contact-form-map-grid__column { min-width: 0; } @media (max-width: 860px) { .contact-form-map-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } } .contact-form-card { max-width: 720px; margin-inline: auto; padding: var(--space-xl); border-top: 3px solid var(--color-accent); background: var(--color-background-alt); } .contact-map { width: 100%; max-width: 100%; min-width: 0; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); } @media (min-width: 861px) { .contact-form-map-grid .contact-map { height: 100%; min-height: 320px; aspect-ratio: auto; } } .contact-map iframe { display: block; width: 100%; max-width: 100%; min-width: 0; height: 100%; border: 0; } @media (max-width: 620px) { .contact-form-card { padding: var(--space-lg) var(--space-sm); } } .contact-social { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm) var(--space-md); max-width: 480px; margin-inline: auto; } .contact-social a { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--radius-full); background: var(--color-background-alt); color: var(--color-heading); transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast); } .contact-social a:hover, .contact-social a:focus { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); } .contact-social svg { width: 22px; height: 22px; } .thank-you-panel { max-width: 560px; margin-inline: auto; text-align: center; } .thank-you-panel__icon { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin: 0 auto var(--space-md); border-radius: var(--radius-full); background: color-mix(in srgb, var(--color-success) 12%, transparent); color: var(--color-success); } .thank-you-panel__icon svg { width: 34px; height: 34px; } .thank-you-panel__lede { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.6; } .thank-you-panel__note { display: flex; align-items: center; justify-content: center; gap: var(--space-2xs); margin: var(--space-md) 0; padding: var(--space-sm) var(--space-md); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-background-alt); color: var(--color-text-muted); font-size: 0.9rem; } .thank-you-panel__note svg { width: 18px; height: 18px; flex-shrink: 0; } .thank-you-panel__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-sm); margin-top: var(--space-lg); } .cookie-consent { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; height: auto; max-height: 45vh; overflow-y: auto; background: var(--color-primary-dark, #0b1f30); color: var(--color-white); box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25); } .cookie-consent[hidden] { display: none; } .cookie-consent__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); width: min(calc(100% - 48px), var(--shell-width)); margin-inline: auto; padding-block: var(--space-sm); } .cookie-consent__text { flex: 1 1 320px; margin: 0; font-size: 0.88rem; line-height: 1.5; color: rgba(255, 255, 255, 0.9); } .cookie-consent__text a { color: var(--color-white); text-decoration: underline; } .cookie-consent__actions { display: flex; flex-wrap: nowrap; gap: var(--space-xs); flex: 0 0 auto; } .cookie-consent__button { min-height: 42px; padding-inline: 20px; font-size: 0.85rem; white-space: nowrap; } .cookie-consent .button--outline { border-color: rgba(255, 255, 255, 0.5); color: var(--color-white); } .cookie-consent .button--outline:hover, .cookie-consent .button--outline:focus { border-color: var(--color-white); background: rgba(255, 255, 255, 0.1); } @media (max-width: 620px) { .cookie-consent { max-height: 60vh; } .cookie-consent__inner { flex-direction: column; align-items: stretch; gap: var(--space-sm); padding-block: var(--space-sm); text-align: center; } .cookie-consent__text { flex-basis: auto; font-size: 0.82rem; } .cookie-consent__actions { flex-wrap: nowrap; justify-content: center; } .cookie-consent__button { flex: 1 1 0; min-height: 44px; padding-inline: 10px; font-size: 0.78rem; } } .footer-cookie-settings { background: none; border: none; padding: 0; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }