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

:root {
  --al-rose: #e8cfcb;
  --al-rose-deep: #d4b0a9;
  --al-charcoal: #1a2332;
  --al-ink: #2c3544;
  --al-cream: #faf6f4;
  --al-white: #ffffff;
  --al-muted: #6b7380;
  --al-line: rgba(26, 35, 50, 0.12);
  --al-serif: 'Cormorant Garamond', Georgia, serif;
  --al-sans: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.al-body {
  font-family: var(--al-sans);
  color: var(--al-charcoal);
  background: var(--al-cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.al-wrap {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* —— Header —— */
.al-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--al-line);
}

.al-top__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}

.al-nav--left { display: flex; gap: 1.5rem; justify-content: flex-end; }
.al-nav--right { display: flex; gap: 1.5rem; justify-content: flex-start; align-items: center; }

.al-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--al-ink);
  transition: color 0.25s ease;
}

.al-nav a:hover,
.al-nav a.is-on { color: var(--al-rose-deep); }

.al-brand {
  font-family: var(--al-serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--al-charcoal);
}

.al-brand span { color: var(--al-rose-deep); }

.al-burger {
  display: none;
  background: none;
  border: 1px solid var(--al-charcoal);
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  justify-self: end;
}

.al-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--al-charcoal);
  transition: transform 0.3s ease, opacity 0.3s;
}

.al-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.al-burger.is-open span:nth-child(2) { opacity: 0; }
.al-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* —— Buttons —— */
.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--al-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}

.al-btn--white {
  background: var(--al-white);
  color: var(--al-charcoal);
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.12);
}

.al-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.18);
}

.al-btn--ghost {
  background: transparent;
  color: var(--al-white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.al-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.al-btn--dark {
  background: var(--al-charcoal);
  color: var(--al-white);
}

.al-btn--dark:hover { background: var(--al-ink); }

/* —— Diagonal sections —— */
.al-diag {
  position: relative;
  padding: 6.5rem 0 7.5rem;
}

.al-diag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  z-index: 0;
}

.al-diag > * { position: relative; z-index: 1; }

.al-diag--rose { background: var(--al-rose); }
.al-diag--char { background: var(--al-charcoal); color: var(--al-white); }
.al-diag--cream { background: var(--al-cream); }

.al-flat { padding: 5.5rem 0; }

/* —— Hero —— */
.al-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--al-white);
  overflow: hidden;
}

.al-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26, 35, 50, 0.72) 0%, rgba(232, 207, 203, 0.35) 100%),
    #3a4555 url('../img/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: al-ken 18s ease-in-out infinite alternate;
}

@keyframes al-ken {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

.al-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem;
  animation: al-rise 1s ease both;
}

@keyframes al-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.al-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-rose);
  margin-bottom: 1.25rem;
}

.al-hero h1 {
  font-family: var(--al-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.al-hero p {
  font-weight: 300;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

.al-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* —— Typography —— */
.al-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--al-rose-deep);
  margin-bottom: 0.75rem;
}

.al-diag--char .al-kicker { color: var(--al-rose); }

.al-title {
  font-family: var(--al-serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.al-lead {
  font-size: 1.05rem;
  color: var(--al-muted);
  max-width: 560px;
}

.al-diag--char .al-lead { color: rgba(255, 255, 255, 0.72); }

.al-center { text-align: center; }
.al-center .al-lead { margin-inline: auto; }

/* —— Cards / grids —— */
.al-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.al-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.al-panel {
  background: var(--al-white);
  padding: 2rem 1.75rem;
  border: 1px solid var(--al-line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.al-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
}

.al-panel__num {
  font-family: var(--al-serif);
  font-size: 2rem;
  color: var(--al-rose-deep);
  margin-bottom: 0.75rem;
}

.al-panel h3 {
  font-family: var(--al-serif);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.al-panel p { font-size: 0.95rem; color: var(--al-muted); }

.al-figure {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(135deg, var(--al-rose), #c9a8a2) center/cover;
}

.al-figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.al-figure:hover img { transform: scale(1.04); }

.al-figure--tall { min-height: 420px; }
.al-figure--tall img { min-height: 420px; }

.al-prose h3 {
  font-family: var(--al-serif);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.6rem;
}

.al-prose p { margin-bottom: 1rem; color: var(--al-muted); }
.al-prose ul { margin: 1rem 0 1.5rem 1.1rem; }
.al-prose li {
  list-style: disc;
  margin-bottom: 0.45rem;
  color: var(--al-muted);
}

/* —— Quote —— */
.al-quote {
  font-family: var(--al-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.al-quote__who {
  font-family: var(--al-sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* —— Timeline —— */
.al-steps {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-left: 2px solid var(--al-rose-deep);
  padding-left: 2rem;
}

.al-step {
  padding: 1.25rem 0 1.75rem;
  position: relative;
}

.al-step::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--al-rose-deep);
  border: 3px solid var(--al-cream);
}

.al-step h3 {
  font-family: var(--al-serif);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.al-step p { color: var(--al-muted); font-size: 0.95rem; }

/* —— Reviews —— */
.al-review {
  background: var(--al-white);
  padding: 2rem;
  border-top: 3px solid var(--al-rose);
}

.al-review p {
  font-family: var(--al-serif);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.al-review__meta { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--al-muted); }

/* —— Form —— */
.al-form {
  display: grid;
  gap: 1.1rem;
  max-width: 520px;
}

.al-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.al-form input,
.al-form textarea,
.al-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--al-line);
  background: var(--al-white);
  font-family: var(--al-sans);
  font-size: 0.95rem;
  color: var(--al-charcoal);
  outline: none;
  transition: border-color 0.25s;
}

.al-form input:focus,
.al-form textarea:focus { border-color: var(--al-rose-deep); }

.al-form textarea { min-height: 140px; resize: vertical; }

.al-contact-card {
  background: var(--al-charcoal);
  color: var(--al-white);
  padding: 2.5rem;
}

.al-contact-card h3 {
  font-family: var(--al-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.al-contact-card p { margin-bottom: 0.75rem; font-size: 0.95rem; opacity: 0.85; }
.al-contact-card a { color: var(--al-rose); }

/* —— Footer —— */
.al-foot {
  background: var(--al-charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.al-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.al-foot__brand {
  font-family: var(--al-serif);
  font-size: 1.5rem;
  color: var(--al-white);
  margin-bottom: 0.75rem;
}

.al-foot h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--al-rose);
  margin-bottom: 1rem;
}

.al-foot a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.al-foot__base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Cookie toast —— */
.al-cookie {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: min(360px, calc(100vw - 2rem));
  background: var(--al-charcoal);
  color: var(--al-white);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}

.al-cookie.is-shown {
  transform: translateY(0);
  opacity: 1;
}

.al-cookie p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.88;
}

.al-cookie a { color: var(--al-rose); text-decoration: underline; }

.al-cookie__row { display: flex; gap: 0.6rem; }

.al-cookie .al-btn { padding: 0.65rem 1.1rem; font-size: 0.72rem; }

/* —— Page hero small —— */
.al-pagehead {
  padding: 5rem 0 4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(232, 207, 203, 0.55), transparent),
    var(--al-cream);
}

.al-pagehead h1 {
  font-family: var(--al-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.al-pagehead p { color: var(--al-muted); max-width: 520px; margin-inline: auto; }

.al-list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--al-muted);
}

.al-list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--al-rose-deep);
  transform: rotate(45deg);
}

.al-policy h2 {
  font-family: var(--al-serif);
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.al-policy p, .al-policy li {
  color: var(--al-muted);
  margin-bottom: 0.85rem;
}

.al-policy ul { margin-left: 1.2rem; margin-bottom: 1.2rem; }
.al-policy li { list-style: disc; }

.al-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 480px;
}

.al-mosaic .al-figure:first-child { grid-row: 1 / 3; }

/* —— Reveal —— */
.al-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.al-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .al-top__inner {
    grid-template-columns: 1fr auto;
  }

  .al-nav--left,
  .al-nav--right {
    display: none;
  }

  .al-brand { justify-self: start; text-align: left; }

  .al-burger { display: flex; }

  .al-nav--mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid var(--al-line);
  }

  .al-nav--mobile.is-open { display: flex; }

  .al-grid-3,
  .al-grid-2,
  .al-foot__grid,
  .al-mosaic {
    grid-template-columns: 1fr;
  }

  .al-mosaic .al-figure:first-child { grid-row: auto; }
}

@media (min-width: 901px) {
  .al-nav--mobile { display: none !important; }
}
