@font-face {
  font-family: "InterLocal";
  src: url("./assets/fonts/InterVariable.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: "Harabara";
  src: url("./assets/fonts/Harabara Mais Demo.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Aduscript";
  src: url("./assets/fonts/aduscript-regular/aduscript-regular.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

:root {
  --background: #fff7ff;
  --foreground: #75556c;
  --muted: #8d6c84;
  --primary: #71485e;
  --primary-dark: #684258;
  --primary-soft: #ebd3eb;
  --primary-softer: #fbf3fb;
  --border: #8c647e;
  --button: #9b79ad;
  --white: #ffffff;
  --shadow: 0 18px 38px rgba(108, 70, 96, 0.16);
  --value-divider: rgba(140, 100, 126, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: "InterLocal", Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

.container {
  width: min(100% - 48px, 1090px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.font-script {
  font-family: "Aduscript", cursive;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary-softer);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(84, 51, 77, 0.1);
}

.navbar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 184px;
  height: 50px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 78px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link {
  border-radius: 999px;
  padding: 8px 7px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 766px;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 6, 14, 0.22) 0%, rgba(14, 6, 14, 0.1) 48%, rgba(14, 6, 14, 0.02) 100%),
    linear-gradient(0deg, rgba(71, 38, 63, 0.2), rgba(71, 38, 63, 0.2));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 766px;
  align-items: center;
}

.hero-copy {
  max-width: 460px;
  color: var(--white);
}

.hero-script {
  margin: 0;
  font-family: "Aduscript", cursive;
  font-size: clamp(2.55rem, 4.6vw, 4.25rem);
  line-height: 1;
}

.hero-title {
  margin: -10px 0 0;
  color: var(--white);
  font-family: "Harabara", "InterLocal", Arial, Helvetica, sans-serif;
  font-size: clamp(2.75rem, 4.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
}

.hero-description {
  max-width: 455px;
  margin: 118px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.hero--profile .hero-description {
  position: relative;
  top: clamp(54px, 4.5vw, 72px);
}

.section-soft {
  background: var(--primary-soft);
}

.section-softer {
  background: var(--primary-softer);
}

.section-padding {
  padding-block: 112px;
}

.value-grid,
.contact-grid {
  display: grid;
  gap: 0;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  background-image:
    linear-gradient(var(--value-divider), var(--value-divider)),
    linear-gradient(var(--value-divider), var(--value-divider)),
    linear-gradient(var(--value-divider), var(--value-divider));
  background-position: 25% center, 50% center, 75% center;
  background-repeat: no-repeat;
  background-size: 1px 56%, 1px 56%, 1px 56%;
}

.value-grid.container {
  width: min(100%, 1366px);
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
  background-image:
    linear-gradient(var(--value-divider), var(--value-divider)),
    linear-gradient(var(--value-divider), var(--value-divider)),
    linear-gradient(var(--value-divider), var(--value-divider));
  background-position: 25% center, 50% center, 75% center;
  background-repeat: no-repeat;
  background-size: 1px 56%, 1px 56%, 1px 56%;
}

.icon-item {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.icon-item:first-child {
  border-left: 0;
}

.value-grid .icon-item,
.contact-grid .icon-item {
  min-height: 286px;
}

.value-grid .icon-item,
.contact-grid .icon-item {
  position: relative;
  border-left: 0;
}

.icon-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  opacity: 0.82;
}

.icon-title {
  margin: 18px 0 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.icon-description {
  max-width: 230px;
  margin: 12px auto 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.story-container {
  width: min(100% - 56px, 1510px);
}

.story-grid {
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.side-heading {
  align-self: end;
  justify-self: center;
  width: 150px;
}

.side-heading strong,
.side-heading span {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.12;
}

.side-heading strong {
  color: var(--primary);
}

.side-heading span {
  margin-top: 20px;
  color: #b38bc3;
}

.story-image,
.bestseller-image,
.profile-photo,
.history-photo,
.contact-photo {
  position: relative;
  overflow: hidden;
}

.story-image {
  height: clamp(410px, 27vw, 506px);
  min-height: 0;
  margin: 0;
}

.story-image img,
.bestseller-image img,
.profile-photo img,
.history-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy-grid {
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
  padding-left: 0;
}

.story-copy-grid article {
  grid-column: 2;
}

.story-copy-grid .quote {
  grid-column: 4;
  max-width: 370px;
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.copy {
  color: var(--foreground);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.72;
}

.copy p {
  margin: 0 0 22px;
}

.quote {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 900;
  line-height: 1.12;
}

.lifestyle-title,
.center-title {
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 58px;
}

.bestseller-image {
  min-height: 455px;
}

.home-quote-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 58px;
  align-items: center;
  margin-top: 154px;
}

.large-lifestyle {
  min-height: 590px;
}

.quote-card {
  display: flex;
  min-height: 495px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--primary-soft);
  padding: 54px;
  text-align: center;
}

.profile-intro {
  display: grid;
  width: min(100% - 88px, 1600px);
  grid-template-columns: minmax(620px, 744px) minmax(420px, 1fr);
  gap: clamp(36px, 2.8vw, 48px);
  align-items: center;
  margin-inline: auto;
}

.profile-photo-frame {
  position: relative;
  width: min(100%, 744px);
  margin-inline: 0;
  padding: clamp(44px, 3vw, 54px) 0 clamp(50px, 3vw, 54px) clamp(132px, 10.5vw, 198px);
}

.profile-photo-frame::before {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(430px, 33vw, 560px);
  height: 100%;
  background: var(--primary-soft);
  content: "";
}

.profile-photo {
  margin: 0;
  min-height: 520px;
}

.profile-photo-frame .profile-photo {
  position: relative;
  height: clamp(560px, 41.5vw, 706px);
  min-height: 0;
}

.vision-grid {
  display: grid;
  gap: 34px;
  margin-top: 48px;
}

.subsection-title {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-brand-section {
  background: var(--primary-softer);
  padding: 12px 0 42px;
}

.profile-brand {
  display: grid;
  width: min(100% - 48px, 1698px);
  min-height: clamp(520px, 34.5vw, 590px);
  grid-template-columns: minmax(420px, 560px) minmax(360px, 410px);
  gap: clamp(74px, 5.6vw, 96px);
  align-items: center;
  justify-content: start;
  background: var(--primary-soft);
  padding: 42px clamp(44px, 3.8vw, 64px) 42px clamp(168px, 16.3vw, 280px);
  margin-inline: auto;
}

.profile-brand .copy {
  max-width: 560px;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  font-weight: 500;
  line-height: 1.34;
  text-align: justify;
  text-align-last: left;
}

.profile-brand .copy p {
  margin-bottom: clamp(58px, 4.5vw, 78px);
}

.profile-brand .copy p:last-child {
  margin-bottom: 0;
}

.profile-brand .profile-photo {
  width: clamp(360px, 24vw, 410px);
  height: clamp(448px, 29.8vw, 508px);
  min-height: 0;
  justify-self: start;
}

.history-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}

.history-grid > article {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.history-copy {
  margin-top: 32px;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.68;
}

.history-copy p {
  margin-bottom: clamp(30px, 3vw, 44px);
}

.history-column {
  display: grid;
  gap: clamp(18px, 1.5vw, 24px);
}

.history-photo {
  min-height: 0;
  background: var(--white);
}

.history-column .history-photo {
  aspect-ratio: 702 / 325;
}

.history-column .history-photo.tall {
  aspect-ratio: 702 / 336;
}

.history-column .history-photo:last-child {
  aspect-ratio: 702 / 343;
}

.history-grid > article .history-photo {
  width: min(88%, 390px);
  height: clamp(330px, 29vw, 430px);
  align-self: end;
  margin: clamp(38px, 5.2vw, 78px) 0 0 clamp(28px, 3.6vw, 44px);
  transform: translateY(clamp(-46px, -2.8vw, -34px));
}

.history-photo.contain img {
  object-fit: contain;
  padding: 8px;
}

.product-intro {
  max-width: 340px;
  margin-bottom: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 50px;
}

.product-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 32px 28px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  display: flex;
  min-height: 255px;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 255px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-card-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-top: auto;
}

.product-name {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-old-price {
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 650;
  text-decoration: line-through;
}

.product-price {
  margin: 2px 0 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.favorite-button {
  align-self: end;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  transition: transform 0.2s ease;
}

.favorite-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.favorite-button.is-active {
  transform: scale(1.12);
}

.new-arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: end;
  margin-top: 64px;
}

.new-arrival {
  text-align: center;
}

.new-arrival-trigger,
.new-arrival-name {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.new-arrival-trigger {
  display: block;
  width: 100%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.new-arrival-trigger:hover {
  transform: translateY(-6px);
}

.new-arrival img {
  width: min(100%, 290px);
  max-height: 320px;
  margin-inline: auto;
  object-fit: contain;
}

.new-arrival h3 {
  max-width: 260px;
  margin: 38px auto 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.new-arrival-name {
  font-weight: inherit;
  line-height: inherit;
  transition: color 0.25s ease;
}

.new-arrival-name:hover {
  color: #9c6f8e;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(50, 27, 44, 0.54);
  backdrop-filter: blur(6px);
}

.product-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border-radius: 22px;
  background: var(--primary-softer);
  box-shadow: 0 24px 70px rgba(67, 37, 59, 0.28);
  color: var(--primary);
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.product-modal.is-open .product-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.product-modal-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-modal-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  margin: 0;
  border-radius: 18px;
  background: var(--primary-soft);
  padding: 24px;
}

.product-modal-image img {
  width: min(100%, 330px);
  max-height: 390px;
  object-fit: contain;
}

.product-modal h2 {
  max-width: 360px;
  margin: 24px auto 0;
  color: var(--primary);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.2;
}

.contact-info-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  align-items: stretch;
  gap: 36px;
}

.panel {
  border: 4px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
  padding: 32px;
}

.panel-title {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.location-panel {
  display: flex;
  min-height: clamp(340px, 26vw, 420px);
  flex-direction: column;
  overflow: hidden;
}

.location-panel .panel-title {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
  padding: 0 16px;
}

.field::placeholder {
  color: var(--muted);
  opacity: 1;
}

.textarea {
  min-height: 174px;
  resize: vertical;
  border-radius: 22px;
  padding-block: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.submit-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--button);
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(93, 58, 91, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.map-link {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  margin: 32px 0 0;
  overflow: hidden;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-grid {
  width: min(100%, 1368px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin: 78px auto 0;
}

.reviews-section .container {
  width: min(100% - 64px, 1368px);
}

.reviews-section .center-title {
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
  line-height: 1.18;
}

.review-image {
  width: 100%;
  height: clamp(178px, 11.5vw, 222px);
  border-radius: 24px;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(108, 70, 96, 0.08);
}

.contact-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-message {
  display: flex;
  min-height: 430px;
  align-items: center;
  background: var(--primary-soft);
  padding: 56px;
}

.contact-message p {
  max-width: 370px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.16;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-photo {
  min-height: 330px;
}

.contact-photo.wide {
  min-height: 390px;
}

.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  min-height: 680px;
  padding-block: 0;
}

.site-footer .container {
  width: min(100% - 96px, 1364px);
}

.footer-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) 180px 325px;
  column-gap: 115px;
  align-items: start;
  padding-top: 148px;
}

.footer-logo {
  width: 272px;
  height: 100px;
  filter: brightness(0);
  object-fit: cover;
  object-position: center;
}

.footer-copy {
  max-width: 440px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.6;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  gap: 46px;
}

.footer-contact {
  gap: 28px;
  font-style: italic;
}

.footer-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.footer-contact span {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 18px;
}

.copyright {
  position: absolute;
  bottom: 76px;
  left: 0;
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (max-width: 1180px) {
  .profile-brand {
    width: min(100% - 48px, 1080px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 52px;
    justify-content: center;
    padding: 42px 48px;
  }

  .profile-brand .copy {
    font-size: 1rem;
  }

  .profile-brand .copy p {
    margin-bottom: 42px;
  }
}

@media (max-width: 1024px) {
  .story-grid,
  .profile-intro,
  .profile-brand,
  .history-grid,
  .home-quote-grid,
  .contact-form-grid,
  .contact-gallery {
    grid-template-columns: 1fr;
  }

  .profile-intro {
    width: min(100% - 64px, 880px);
  }

  .profile-photo-frame {
    width: min(100%, 680px);
    padding-left: clamp(86px, 18vw, 154px);
  }

  .profile-photo-frame::before {
    width: min(72%, 520px);
  }

  .profile-photo-frame .profile-photo {
    height: clamp(520px, 70vw, 660px);
  }

  .profile-brand {
    width: min(100% - 64px, 880px);
    min-height: 0;
    gap: 42px;
    padding: 52px clamp(32px, 6vw, 58px);
  }

  .profile-brand .copy {
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.48;
    text-align: left;
  }

  .profile-brand .copy p {
    margin-bottom: 34px;
  }

  .profile-brand .profile-photo {
    width: min(100%, 420px);
    height: 510px;
    justify-self: center;
  }

  .history-grid {
    width: min(100% - 64px, 880px);
    gap: 34px;
  }

  .history-copy {
    max-width: 680px;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .history-grid > article .history-photo {
    width: min(100%, 430px);
    height: 500px;
    transform: none;
  }

  .history-column .history-photo,
  .history-column .history-photo.tall {
    height: 320px;
  }

  .story-copy-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .story-copy-grid article,
  .story-copy-grid .quote {
    grid-column: 1;
  }

  .side-heading {
    width: auto;
    justify-self: center;
    text-align: center;
  }

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

  .site-footer .container {
    width: min(100% - 64px, 1024px);
  }

  .footer-grid {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) 150px 220px;
    column-gap: 48px;
    padding-top: 96px;
  }

  .footer-logo {
    width: 238px;
    height: 86px;
  }

  .footer-copy {
    max-width: 360px;
    font-size: 18px;
  }

  .footer-contact a {
    font-size: 17px;
  }

  .footer-contact span {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .container,
  .container-wide {
    width: min(100% - 32px, 1130px);
  }

  .value-grid.container,
  .site-footer .container {
    width: min(100% - 32px, 1130px);
  }

  .navbar {
    min-height: 64px;
  }

  .brand-logo {
    width: 158px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-top: 1px solid rgba(140, 100, 126, 0.18);
    background: var(--primary-softer);
    transition: max-height 0.3s ease;
  }

  .nav-links.is-open {
    max-height: 340px;
  }

  .nav-link {
    display: block;
    padding: 15px 28px;
    font-size: 14px;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-bg {
    object-position: center;
  }

  .hero-description {
    margin-top: 72px;
  }

  .hero--profile .hero-description {
    top: 34px;
  }

  .section-padding {
    padding-block: 72px;
  }

  .reviews-section .container {
    width: min(100% - 32px, 480px);
  }

  .value-grid,
  .contact-grid,
  .lifestyle-grid,
  .bestseller-grid,
  .product-grid,
  .new-arrival-grid,
  .reviews-grid,
  .gallery-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .icon-item {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .icon-item:first-child {
    border-top: 0;
  }

  .reviews-grid {
    gap: 24px;
    margin-top: 42px;
  }

  .review-image {
    height: clamp(170px, 46vw, 220px);
    border-radius: 18px;
  }

  .value-grid,
  .contact-grid {
    background-image: none;
  }

  .story-image,
  .bestseller-image,
  .large-lifestyle,
  .profile-photo,
  .history-photo,
  .contact-photo,
  .contact-photo.wide {
    min-height: 360px;
  }

  .quote-card {
    min-height: 330px;
    padding: 36px 24px;
  }

  .profile-photo-frame::before {
    left: 0;
    width: min(74%, 330px);
  }

  .profile-photo-frame {
    width: min(100%, 440px);
    padding: 30px 0 36px 58px;
  }

  .profile-photo-frame .profile-photo {
    height: 420px;
  }

  .profile-brand-section {
    padding: 10px 0 36px;
  }

  .profile-brand {
    width: min(100% - 32px, 480px);
    gap: 30px;
    padding: 34px 24px;
  }

  .profile-brand .copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .profile-brand .copy p {
    margin-bottom: 24px;
  }

  .profile-brand .profile-photo {
    width: min(100%, 320px);
    height: 400px;
  }

  .product-modal {
    padding: 18px;
  }

  .product-modal-card {
    border-radius: 18px;
    padding: 28px 18px 24px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .product-modal-image {
    min-height: 290px;
    padding: 18px;
  }

  .product-modal-image img {
    width: min(100%, 260px);
    max-height: 310px;
  }

  .history-grid {
    width: min(100% - 32px, 480px);
    gap: 28px;
  }

  .history-copy {
    font-size: 13px;
    line-height: 1.58;
  }

  .history-copy p {
    margin-bottom: 22px;
  }

  .history-grid > article .history-photo {
    width: min(100%, 320px);
    height: 380px;
    transform: none;
  }

  .history-column {
    gap: 16px;
  }

  .history-column .history-photo,
  .history-column .history-photo.tall {
    height: 230px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 24px;
  }

  .location-panel {
    min-height: 360px;
  }

  .map-link {
    margin-top: 28px;
  }

  .site-footer {
    min-height: 0;
    padding-block: 80px;
  }

  .footer-grid {
    min-height: 0;
    gap: 32px;
    padding-top: 0;
  }

  .footer-logo {
    width: 204px;
    height: 64px;
  }

  .footer-copy {
    max-width: 310px;
    margin-top: 28px;
    font-size: 16px;
  }

  .footer-nav {
    gap: 18px;
  }

  .footer-contact {
    gap: 22px;
  }

  .copyright {
    position: static;
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
