:root {
  --shell-white: #F7F2EA;
  --sand: #D8C1A5;
  --warm-gold: #B78B35;
  --main-petrol: #2F6F7D;
  --water-blue: #78A9B7;
  --silver: #C6CDD1;
  --rose-clay: #CC8B7A;
  --text: #53565a;
  --line: rgba(183, 139, 53, 0.44);
  --page-max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--shell-white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--page-max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.brand-logo {
  object-fit: contain;
}

.brand-logo--hero {
  width: 74px;
  height: 105px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.hero {
  position: relative;
  min-height: 700px;
  padding: 82px 0 0;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: clamp(4rem, 8.2vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero__tagline {
  margin: 14px 0 0;
  color: var(--warm-gold);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.2;
}

.hero__watercolor {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.hero__watercolor img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center bottom;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px auto 0;
}

.ornament span {
  display: block;
  width: 136px;
  height: 1px;
  background: var(--line);
}

.ornament i {
  display: block;
  width: 10px;
  height: 10px;
  margin-inline: 17px;
  background: var(--warm-gold);
  transform: rotate(45deg);
}

.ornament--tiny {
  justify-content: flex-start;
  margin: 12px 0 22px;
}

.ornament--tiny span {
  width: 56px;
}

.ornament--tiny i {
  width: 8px;
  height: 8px;
  margin-inline: 11px;
}

.ornament--left {
  justify-content: flex-start;
}

.movements-section {
  background: var(--shell-white);
}

.movements-wrap {
  padding: 22px 0;
}

.hairline {
  height: 1px;
  background: var(--line);
}

.movements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 24px);
  padding: 24px 0;
  flex-wrap: wrap;
}

.movements a {
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.movements a:hover,
.movements a:focus-visible {
  color: var(--warm-gold);
  transform: translateY(-1px);
}

.movements img {
  width: 9px;
  height: 9px;
}

.about-section {
  border-bottom: 1px solid rgba(183, 139, 53, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.portrait-card {
  margin: 0;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 11px;
  box-shadow: 0 16px 42px rgba(47, 111, 125, 0.07);
}

.eyebrow {
  margin: 0;
  color: var(--warm-gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 24px;
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  font-weight: 400;
  line-height: 0.98;
}

.about-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-top: 34px;
  padding: 14px 26px;
  border: 1px solid var(--warm-gold);
  color: var(--warm-gold);
  background: rgba(247, 242, 234, 0.55);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--shell-white);
  background: var(--warm-gold);
  transform: translateY(-1px);
}

.poem-section {
  min-height: 390px;
  overflow: hidden;
}

.poem-section__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  pointer-events: none;
}

.poem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(46px, 8vw, 100px);
  align-items: center;
}

.poem {
  margin: 0;
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  line-height: 1.14;
}

.poem p {
  margin: 0 0 18px;
}

.poem-visual {
  margin: 0;
  justify-self: end;
}

.poem-visual img {
  width: min(100%, 520px);
  mix-blend-mode: multiply;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: var(--warm-gold);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link b {
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link:hover b,
.text-link:focus-visible b {
  transform: translateX(4px);
}

.site-footer {
  padding: 32px 0 28px;
  border-top: 1px solid rgba(183, 139, 53, 0.22);
  background: rgba(247, 242, 234, 0.98);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo--footer {
  width: 35px;
  height: 50px;
}

.footer-title {
  margin: 0;
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ornament--footer {
  margin: 7px 0 0;
}

.ornament--footer span {
  width: 80px;
}

.ornament--footer i {
  width: 7px;
  height: 7px;
  margin-inline: 10px;
}

.footer-contact,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-contact a,
.footer-legal a {
  text-decoration: none;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--main-petrol);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--warm-gold);
  color: var(--warm-gold);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.footer-legal {
  color: #8b8b8b;
  font-size: 0.76rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0;
}

.legal-page h1 {
  color: var(--main-petrol);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
}

.legal-notice {
  max-width: 760px;
  padding: 22px;
  border-left: 3px solid var(--warm-gold);
  background: rgba(216, 193, 165, 0.18);
}

@media (max-width: 900px) {
  .hero {
    min-height: 590px;
    padding-top: 58px;
  }

  .brand-logo--hero {
    width: 57px;
    height: 82px;
    margin-bottom: 24px;
  }

  .hero__watercolor img {
    min-height: 220px;
  }

  .about-grid,
  .poem-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .poem-copy {
    max-width: 620px;
  }

  .poem-visual {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, var(--page-max));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 525px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .ornament--short span {
    width: 82px;
  }

  .hero__tagline {
    font-size: 1.45rem;
  }

  .movements {
    column-gap: 10px;
    row-gap: 13px;
  }

  .movements a {
    font-size: 0.92rem;
    letter-spacing: 0.13em;
  }

  .movements img {
    width: 7px;
    height: 7px;
  }

  .portrait-card img {
    aspect-ratio: 1 / 1.05;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-title {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
