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

:root {
  --sage: #4e6b45;
  --sage-dark: #2e4428;
  --sage-mid: #5c7450;
  --sage-light: #e2ead9;
  --sage-pale: #f0f4ed;
  --cream: #faf8f3;
  --parchment: #f5f0e8;
  --sand: #e8dfd0;
  --terracotta: #b87355;
  --ink: #1c1c1a;
  --ink-soft: #5a5a55;
  --warm-gray: #9a9890;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --section-pad: clamp(5rem, 9vw, 8rem);
  --radius: 2px;
  --radius-lg: 8px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.07);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}

/* ── Typography ────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
}

p {
  line-height: 1.75;
}

/* ── Layout ────────────────────────────────── */

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

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

/* ── Skip link ─────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

/* ── Navigation ────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.brand-location {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition);
}

/* Transparent header: white text */
.site-header.transparent .brand-name {
  color: rgba(255, 255, 255, 0.95);
}

.site-header.transparent .brand-location {
  color: rgba(255, 255, 255, 0.65);
}

/* Solid header: dark text */
.site-header.solid .brand-name {
  color: rgb(9 165 125);
}

.site-header.solid .brand-location {
  color: var(--sage-mid);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.site-header.transparent .site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.transparent .site-nav a:hover {
  color: var(--white);
}

.site-header.solid .site-nav a {
  color: var(--ink-soft);
}

.site-header.solid .site-nav a:hover {
  color: rgb(9 165 125);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher select {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 0.3rem 1.6rem 0.3rem 0.6rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--transition), color var(--transition);
}

.site-header.transparent .language-switcher select {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.3);
  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 fill='rgba(255,255,255,0.7)' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
}

.site-header.solid .language-switcher select {
  color: var(--ink-soft);
  border-color: rgba(78, 107, 69, 0.3);
  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 fill='%234e6b45' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  transition: 0.3s;
}

.site-header.transparent .nav-toggle span {
  background: rgba(255, 255, 255, 0.9);
}

.site-header.solid .nav-toggle span {
  background: var(--ink);
}

/* ── Hero ──────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: rgb(9 165 125);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/frontcover-hygge-hund-maite-balder-cookie.jpeg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem);
  max-width: 860px;
}

.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ── Feature strip ─────────────────────────── */

.feature-bar {
  background: rgb(9 165 125);
}

.feature-bar-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.feature-bar-inner::-webkit-scrollbar {
  display: none;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.2rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item-icon {
  font-size: 1rem;
  opacity: 0.8;
}

/* ── Section base ──────────────────────────── */

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--parchment);
}

.section-sand {
  background: var(--sand);
}

.section-sage {
  background: var(--sage-light);
}

.section-dark {
  background: rgb(9 165 125);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  font-style: italic;
  color: rgb(9 165 125);
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}

.section-divider {
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  margin: 1.2rem auto 0;
}

/* ── Concept / About ───────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px;
}

.about-text {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-text h2 {
  color: rgb(9 165 125);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.about-image {
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

.concept-values {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.concept-col h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(9 165 125);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--sand);
}

.concept-col ul {
  list-style: none;
}

.concept-col ul li {
  padding: 0.6rem 0;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(78, 107, 69, 0.08);
  font-size: 0.97rem;
}

.concept-col ul li::before {
  content: '×';
  color: var(--terracotta);
  font-size: 1.1rem;
  line-height: 1.55;
  flex-shrink: 0;
}

.concept-col.yes ul li::before {
  content: '✓';
  color: var(--sage);
}

.concept-note {
  margin-top: 2rem;
  padding: 1.4rem 1.8rem;
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  font-size: 0.95rem;
  color: rgb(9 165 125);
  font-style: italic;
  line-height: 1.7;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
}

/* ── Gallery ───────────────────────────────── */

.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--sand);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 68, 40, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(46, 68, 40, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.wide img {
  aspect-ratio: 2 / 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  aspect-ratio: auto;
  height: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border-radius: 50%;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ── How it works ──────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.step h3 {
  font-style: italic;
  color: rgb(9 165 125);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  position: absolute;
  top: 26px;
  right: -1.5rem;
  width: 3rem;
  height: 1px;
  background: var(--sage-light);
}

.step:last-child .step-connector {
  display: none;
}

/* ── Schedule ──────────────────────────────── */

.schedule-hours {
  text-align: center;
  margin-bottom: 2.5rem;
}

.schedule-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--sage);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgb(9 165 125);
  font-weight: 500;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.schedule-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-card-header {
  background: rgb(9 165 125);
  padding: 1.3rem 1.8rem;
}

.schedule-card-header h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--white);
}

.schedule-card-body ul {
  list-style: none;
}

.schedule-card-body li {
  padding: 0.9rem 1.8rem;
  border-bottom: 1px solid rgba(78, 107, 69, 0.08);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-soft);
}

.schedule-card-body li:last-child {
  border-bottom: none;
}

.schedule-card-body li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ── Pricing ───────────────────────────────── */

.pricing-intro {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(78, 107, 69, 0.12);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background: rgb(9 165 125);
  border-color: rgb(9 165 125);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-card:not(.featured) .pricing-amount {
  color: rgb(9 165 125);
}

.pricing-card.featured .pricing-amount {
  color: var(--white);
}

.pricing-currency {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.2rem;
}

.pricing-card:not(.featured) .pricing-currency {
  color: var(--ink-soft);
}

.pricing-card.featured .pricing-currency {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-card:not(.featured) .pricing-desc {
  color: var(--ink-soft);
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.82);
}

/* Accessible fallback table */
.pricing-table-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Rules ─────────────────────────────────── */

.rules-intro-text {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(78, 107, 69, 0.1);
  border: 1px solid rgba(78, 107, 69, 0.1);
  max-width: 820px;
  margin: 0 auto;
}

.rule-item {
  background: var(--sage-pale);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.rule-item::before {
  content: '—';
  color: var(--sage);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rules-note {
  text-align: center;
  margin-top: 2.5rem;
  font-style: italic;
  color: rgb(9 165 125);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
}

/* ── Location & Contact ────────────────────── */

.contact-section {
  background: rgb(9 165 125);
  color: var(--white);
  padding: var(--section-pad) 0;
}

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

.contact-left h2 {
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.contact-left p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  min-width: 80px;
  margin-top: 0.15rem;
}

.contact-item-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.97rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--transition);
}

a.contact-item-value:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-right {
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-right h3 {
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-right p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── CTA buttons ───────────────────────────── */

.cta {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.cta:hover {
  background: var(--white);
  color: rgb(9 165 125);
}

.cta-dark {
  color: rgb(9 165 125);
  border-color: rgb(9 165 125);
}

.cta-dark:hover {
  background: rgb(9 165 125);
  color: var(--white);
}

/* ── Footer ────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.4);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 0.6rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

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

/* ── Accessibility ─────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ── Responsive ────────────────────────────── */

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
    order: -1;
  }

  .about-image img {
    aspect-ratio: 16 / 9;
  }

  .concept-values {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-connector {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 199;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(78, 107, 69, 0.08);
    font-size: 0.85rem;
    color: var(--ink-soft) !important;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide img {
    aspect-ratio: 1 / 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .hero-content {
    padding: 0 1.5rem clamp(5rem, 12vw, 8rem);
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .feature-item {
    padding: 0.9rem 1rem;
    font-size: 0.64rem;
  }

  .contact-right {
    padding: 2rem 1.5rem;
  }
}

/* ── Helper overrides ──────────────────────── */

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.5);
}

.contact-address {
  font-style: normal;
}
