@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
:root {
  --rose: #f8f1f3;
  --blush: #f2e6ea;
  --pearl: #fcfafb;
  --green: #137b68;
  --plum: #7a3e67;
  --gold: #c9a35a;
  --ink: #2e2c30;
  --muted: #5e5960;
  --line: #e9dde2;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--rose);
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 6rem));
  margin-inline: auto;
}
.site-header {
  position: relative;
  z-index: 3;
  background: rgba(252, 250, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav a {
  transition: color 0.25s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 1.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
h3 {
  font-size: 2rem;
}
.lead {
  font-size: 1.08rem;
  max-width: 600px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.btn:hover {
  background: var(--plum);
  box-shadow: 0 12px 25px #7a3e6730;
  transform: translateY(-3px);
}
.btn.alt {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--ink);
}
.hero {
  padding: 5rem 0 7rem;
  background: var(--pearl);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 5rem;
}
.hero-copy {
  padding-left: 3rem;
}
.hero-copy h1 {
  max-width: 650px;
  margin: 1.2rem 0 1.5rem;
}
.hero-copy .lead {
  margin-bottom: 2rem;
}
.hero-image {
  height: 650px;
  border-radius: 180px 180px 28px 28px;
  overflow: hidden;
  background: var(--blush);
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 3rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 68% 22%, #fffdf9 0 9%, transparent 10%),
    radial-gradient(
      circle at 68% 22%,
      transparent 0 19%,
      #c9a35a55 20% 20.5%,
      transparent 21%
    ),
    linear-gradient(145deg, #ead7dd 0%, #fffaf9 47%, #d9b77a 100%);
}
.hero-fallback::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid #c9a35a99;
  border-radius: 50% 50% 12px 12px;
  transform: rotate(-8deg);
}
.hero-fallback span,
.hero-fallback small,
.hero-fallback strong {
  position: relative;
}
.hero-fallback span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-fallback strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
}
.hero-fallback small {
  color: var(--plum);
  letter-spacing: 0.08em;
}
.hero-image:not(.is-fallback) .hero-fallback {
  display: none;
}
.image-placeholder {
  min-height: 240px;
  background: linear-gradient(135deg, #ead7dd, #fffaf9 46%, #d9b77a);
  display: grid;
  place-items: center;
  color: #7a3e6766;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-image .image-placeholder {
  height: 100%;
}
.section {
  padding: 7rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-head p {
  max-width: 430px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.collection-card {
  min-height: 300px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.collection-card:nth-child(even) {
  margin-top: 3rem;
}
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px #7a3e6714;
}
.card-icon {
  font-size: 1.7rem;
  color: var(--gold);
}
.collection-card h3 {
  font-size: 1.65rem;
}
.arrow {
  color: var(--green);
  font-size: 1.4rem;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold);
}
.mini-block {
  padding: 2.5rem;
  background: var(--rose);
}
.mini-block span {
  color: var(--gold);
  font-size: 0.8rem;
}
.mini-block h3 {
  margin: 1.5rem 0 0.7rem;
}
.reasons {
  background: var(--ink);
  color: #ddd5d9;
}
.reasons h2 {
  color: #fff;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c9a35a66;
}
.reason {
  padding: 1.8rem 1rem 0;
  border-right: 1px solid #c9a35a66;
}
.reason:last-child {
  border: 0;
}
.reason strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
.reason span {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.collage-image {
  overflow: hidden;
  border-radius: 18px;
}
.collage-image:first-child {
  grid-row: span 2;
  height: 460px;
}
.collage-image:not(:first-child) {
  height: 220px;
}
.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-image:hover img {
  transform: scale(1.04);
}
.cta {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(120deg, #f4e3e5, #fdf7ef 55%, #e9d9b6);
}
.cta p {
  max-width: 620px;
  margin: 1rem auto 2rem;
}
.page-hero {
  padding: 6rem 0 5rem;
  background: var(--pearl);
}
.page-hero h1 {
  max-width: 850px;
  margin-top: 1rem;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.prose p {
  max-width: 650px;
}
.quote {
  padding: 4rem;
  border-left: 2px solid var(--gold);
  background: var(--pearl);
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1.15;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.team-image {
  height: 370px;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
  transform: scale(1.04);
}
.team-card div:last-child {
  padding: 1.5rem;
}
.team-card h3 {
  font-size: 1.7rem;
}
.team-card blockquote {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--plum);
}
.service-list {
  display: grid;
  gap: 1.5rem;
}
.service-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.service-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
}
.service-item h2 {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}
.contact-panel {
  padding: 2.5rem;
  background: var(--pearl);
  border-radius: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}
label.full {
  grid-column: 1/-1;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #137b6818;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #dff2eb;
  color: var(--green);
  font-size: 0.9rem;
}
.form-status.is-visible {
  display: block;
}
.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-details strong {
  display: block;
  color: var(--ink);
}
.map {
  min-height: 300px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e7d9dd, #fdf8ee);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--plum);
}
.map span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}
.legal {
  max-width: 850px;
}
.legal h2 {
  font-size: 2.2rem;
  margin: 2.5rem 0 0.7rem;
}
.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--ink);
  color: #cfc4ca;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.site-footer .brand {
  color: #fff;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.site-footer a:hover {
  color: #fff;
}
.footer-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}
.copyright {
  padding-top: 1.2rem;
  border-top: 1px solid #ffffff20;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.reveal {
  animation: reveal 0.8s both;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 3rem, 700px);
  }
  .nav {
    gap: 1rem;
  }
  .hero-grid,
  .process,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-image {
    height: 500px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card:nth-child(even) {
    margin-top: 0;
  }
  .collection-card:last-child {
    grid-column: span 2;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-top: 0;
  }
  .reason {
    border-top: 1px solid #c9a35a66;
    padding-top: 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 2rem);
    padding-inline: 1rem;
  }
  .service-item {
    padding: 1rem;
  }
  .section,
  .hero,
  .page-hero {
    padding-block: 4rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 80px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--pearl);
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 0.5rem;
  }
  .nav-wrap {
    min-height: 80px;
  }
  .hero-image {
    height: 390px;
  }
  .collection-grid,
  .team-grid,
  .three-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .collection-card:last-child {
    grid-column: auto;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 1rem;
  }
  .quote {
    padding: 2rem;
    font-size: 1.9rem;
  }
  .service-item {
    grid-template-columns: 45px 1fr;
  }
  .service-item h2 {
    font-size: 2rem;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 0.5rem;
  }
}
