:root {
  --ink: #5c1c4f;
  --ink-strong: #3f1739;
  --plum: #7b217f;
  --magenta: #b2388b;
  --rose: #f4dce7;
  --rose-deep: #e8b8d2;
  --petal: #f9edf3;
  --olive: #697049;
  --white: #fffafc;
  --shadow: 0 24px 70px rgba(92, 28, 79, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--rose);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

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

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

/* ------------------------------------------------------------------ */
/* Mobile-first base styles (small phones and up)                      */
/* ------------------------------------------------------------------ */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid rgba(178, 56, 139, 0.16);
}

.brand {
  width: 158px;
}

.menu-toggle {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms 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);
}

.nav-links {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  padding: 150px clamp(20px, 5vw, 82px) 80px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto -8vw -10vw -6vw;
  height: 32vh;
  min-height: 230px;
  content: "";
  background: var(--magenta);
  border-radius: 52% 48% 0 0 / 48% 62% 0 0;
}

.hero::after {
  position: absolute;
  top: 16%;
  right: -90px;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  content: "";
  background:
    linear-gradient(135deg, transparent 48%, rgba(105, 112, 73, 0.18) 49% 51%, transparent 52%),
    radial-gradient(circle at 50% 12%, transparent 0 42%, rgba(92, 28, 79, 0.18) 43% 44%, transparent 45%);
  border: 2px solid rgba(92, 28, 79, 0.18);
  border-radius: 50%;
  opacity: 0.75;
}

.hero-copy,
.hero-media,
.intro-section,
.story-section,
.approach-section,
.values-section,
.location-section,
.cta-section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.99;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  max-width: 780px;
  /* font-size: clamp(3.5rem, 19vw, 5.2rem); */
  /* font-size: clamp(2.8rem, 16vw, 5.0rem); */
  /* font-size: clamp(2.1rem, 12vw, 3.75rem); */
  font-size: clamp(1.68rem, 9.6vw, 3.0rem);
  -webkit-hyphens: false;
  hyphens: false;
}

h2 {
  max-width: 800px;
  font-size: clamp(1.2rem, 6vw, 2.1rem);
  -webkit-hyphens: none;
  hyphens: none;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.22;
}

p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #6b2c5d;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: 2px solid var(--magenta);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(92, 28, 79, 0.18);
}

.button.primary {
  background: var(--magenta);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--magenta);
}

.hero-media {
  min-height: auto;
  display: grid;
  align-items: end;
}

.portrait {
  position: relative;
  z-index: 2;
  width: 70%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 10px solid rgba(255, 250, 252, 0.74);
  border-radius: 46% 46% 8px 8px;
  box-shadow: var(--shadow);
  justify-self: center;
}

.logo-orbit {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -50px;
  width: 260px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(123, 33, 127, 0.82), rgba(210, 34, 136, 0.76)),
    linear-gradient(45deg, transparent 0 49%, rgba(255, 250, 252, 0.5) 50% 51%, transparent 52%);
  border-radius: 30% 70% 44% 56% / 50% 42% 58% 50%;
  transform: rotate(8deg);
  opacity: 0.9;
  box-shadow: 0 30px 90px rgba(123, 33, 127, 0.28);
}

.logo-orbit img {
  width: 72%;
  opacity: 0.2;
  transform: rotate(-8deg);
}

.intro-section,
.location-section {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 82px);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 44px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.intro-grid article {
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 250, 252, 0.54);
  border: 1px solid rgba(178, 56, 139, 0.2);
  border-radius: var(--radius);
}

.field-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 82px);
  background: var(--petal);
}

.story-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 44% 44% 8px;
  box-shadow: var(--shadow);
}

.story-copy p,
.approach-copy p {
  max-width: 720px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(82px, 11vw, 150px) clamp(20px, 5vw, 82px);
  overflow: hidden;
}

.approach-art {
  position: relative;
  min-height: 320px;
  order: 2;
}

.approach-art span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(34vw, 330px);
  aspect-ratio: 1;
  background: var(--rose-deep);
  transform: translate(-50%, -50%) rotate(45deg);
}

.approach-art span:nth-child(2) {
  background: var(--plum);
  transform: translate(-34%, -72%) rotate(45deg);
}

.approach-art span:nth-child(3) {
  background: var(--magenta);
  transform: translate(-12%, -30%) rotate(45deg);
}

.approach-art img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(39vw, 410px);
  transform: translate(-45%, -45%);
  opacity: 0.48;
  filter: drop-shadow(0 24px 36px rgba(92, 28, 79, 0.16));
}

.values-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.values-section h2,
.values-section .eyebrow {
  color: var(--white);
}

.values-image {
  position: relative;
  order: -1;
  min-height: 320px;
  background-image:
    linear-gradient(to bottom, rgba(63, 23, 57, 0.15) 0%, rgba(63, 23, 57, 0.7) 100%),
    url("img/freud.png");
  background-repeat: no-repeat;
  background-position: center 22%, center 22%;
  background-size: cover, cover;
}

.values-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(63, 23, 57, 0.5), transparent 45%);
}

.values-copy {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 82px);
}

.values-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 250, 252, 0.16);
}

.values-list li:last-child {
  border-bottom: 1px solid rgba(255, 250, 252, 0.16);
}

.value-bullet {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--rose-deep);
  border-radius: 50%;
}

.values-list p {
  margin: 0;
}

.location-address {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.location-map {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(178, 56, 139, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 14px;
  margin-top: 24px;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
  padding: clamp(66px, 8vw, 110px) clamp(20px, 5vw, 82px);
  background:
    linear-gradient(100deg, rgba(92, 28, 79, 0.94), rgba(178, 56, 139, 0.9)),
    var(--magenta);
  color: var(--white);
}

.cta-section h2,
.cta-section .eyebrow {
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(1.2rem, 2.52vw, 2.76rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 14px;
}

.button.whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: var(--white);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 82px);
  background: var(--white);
  border-top: 1px solid rgba(178, 56, 139, 0.16);
  color: var(--ink);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* Tablet and up (>= 721px)                                            */
/* ------------------------------------------------------------------ */

@media (min-width: 721px) {
  .site-header {
    position: fixed;
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    gap: clamp(14px, 2vw, 30px);
    background: transparent;
    font-size: 0.9rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .brand {
    width: clamp(150px, 17vw, 230px);
  }

  .hero {
    padding-top: clamp(128px, 15vw, 172px);
  }

  h1 {
    font-size: clamp(2.52rem, 6vw, 5.34rem);
  }

  h2 {
    font-size: clamp(1.56rem, 3.24vw, 3.54rem);
  }

  .hero-actions,
  .cta-actions,
  .location-actions,
  .button {
    width: auto;
  }

  .portrait {
    width: min(70%, 392px);
  }

  .logo-orbit {
    top: 7%;
    right: -8%;
    width: min(55vw, 530px);
  }

  .location-map {
    aspect-ratio: 4 / 3;
  }

  .story-image img {
    max-height: 760px;
  }

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

/* ------------------------------------------------------------------ */
/* Desktop and up (>= 1041px)                                          */
/* ------------------------------------------------------------------ */

@media (min-width: 1041px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .hero-media {
    min-height: 620px;
  }

  .intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-section {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  }

  .approach-section {
    grid-template-columns: 0.78fr minmax(0, 1fr);
  }

  .approach-art {
    min-height: 420px;
    order: 0;
  }

  .values-section {
    grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  }

  .values-image {
    order: 0;
    background-image:
      linear-gradient(100deg, var(--ink) 0%, rgba(63, 23, 57, 0.62) 42%, rgba(63, 23, 57, 0.18) 78%, transparent 100%),
      url("img/freud.png");
    background-position: left 15% top 20%, left 15% top 20%;
  }

  .location-map {
    aspect-ratio: 16 / 7;
  }

  .cta-section {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* ------------------------------------------------------------------ */
/* Reduced motion                                                      */
/* ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
