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

:root {
  --ink: #241a1c;
  --paper: #f5f0ea;
  --paper-deep: #e9dfd5;
  --wine: #6f1d35;
  --wine-dark: #40101e;
  --rose: #d6a8a8;
  --gold: #a98253;
  --line: rgba(36, 26, 28, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

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

img {
  display: block;
}

.hero-frame img,
.about-image img,
.gallery-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

::selection {
  background: var(--wine);
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  padding: 0 clamp(24px, 5vw, 78px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 600 16px/1 var(--serif);
  letter-spacing: -0.08em;
}

.brand-name {
  font: 500 20px/1 var(--serif);
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
}

.desktop-nav a,
footer nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.desktop-nav a::after,
footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms ease;
}

.desktop-nav a:hover::after,
footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  background: var(--wine-dark);
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: 13%;
  left: 34%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  padding: 190px clamp(28px, 5.7vw, 92px) 120px;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 68%, rgba(214, 168, 168, 0.15), transparent 34%),
    var(--wine-dark);
}

.eyebrow {
  display: flex;
  margin: 0 0 32px;
  align-items: center;
  gap: 13px;
  color: #d5b6b4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 31px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 36px;
  font: 500 clamp(65px, 7.1vw, 118px)/0.76 var(--serif);
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: block;
  margin-left: clamp(18px, 3.8vw, 64px);
  color: var(--rose);
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 15px;
  font: 500 clamp(24px, 2.1vw, 34px)/1.2 var(--serif);
}

.hero-body {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  margin-top: 42px;
  align-items: center;
  gap: 34px;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #fff;
  color: var(--wine-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.primary-button:hover {
  background: var(--rose);
  color: var(--wine-dark);
  transform: translateY(-3px);
}

.primary-button span {
  font-size: 18px;
}

.text-link {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.text-link span {
  margin-left: 10px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 16, 30, 0.4), transparent 28%);
  content: "";
}

.hero-frame img {
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.76) sepia(0.08);
  transform: scale(1.01);
  animation: hero-reveal 1.4s cubic-bezier(.2,.7,.2,1) both;
}

.hero-orbit {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 12%;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-orbit span {
  font: 500 52px/0.8 var(--serif);
}

.hero-orbit small {
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: 0.22em;
  line-height: 1.45;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -35px;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 35px;
  left: clamp(28px, 5.7vw, 92px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 8px;
  letter-spacing: 0.23em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 60px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: #fff;
  content: "";
  animation: scroll-line 2.2s ease infinite;
}

.about {
  padding: 130px clamp(24px, 7vw, 110px) 160px;
}

.section-heading {
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.section-number {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  padding-bottom: 22px;
  font: 500 clamp(52px, 6.5vw, 104px)/0.9 var(--serif);
  letter-spacing: -0.04em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 650px;
}

.about-image::before {
  position: absolute;
  z-index: -1;
  right: -25px;
  bottom: -25px;
  width: 58%;
  height: 45%;
  border: 1px solid var(--rose);
  content: "";
}

.about-image img {
  object-fit: cover;
  filter: saturate(0.74) sepia(0.06);
}

.about-image > span {
  position: absolute;
  right: -54px;
  bottom: -40px;
  color: rgba(111, 29, 53, 0.1);
  font: 500 240px/0.7 var(--serif);
}

.about-copy {
  max-width: 640px;
}

.about-copy p {
  margin: 0 0 27px;
  color: #64585a;
  font-size: 14px;
  line-height: 2;
}

.about-copy .dropcap {
  color: var(--ink);
  font: 500 clamp(21px, 2vw, 29px)/1.56 var(--serif);
}

.dropcap::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: var(--wine);
  font: 500 78px/0.7 var(--serif);
}

.gallery-section {
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 110px) 160px;
  background: #251a1c;
  color: #f8f2ec;
}

.gallery-heading {
  grid-template-columns: 60px 1fr auto;
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font: italic 500 20px var(--serif);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  grid-template-rows: 530px 440px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #3b2a2e;
}

.gallery-grid img {
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 600ms ease, transform 900ms cubic-bezier(.2,.6,.2,1);
}

.gallery-grid figure:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-wide img {
  object-position: center 52%;
}

.gallery-portrait,
.gallery-wide {
  min-width: 0;
}

.gallery-portrait:nth-of-type(3) {
  width: calc(50% - 9px);
}

.gallery-portrait:nth-of-type(4) {
  position: relative;
  width: calc(50% - 9px);
  justify-self: end;
  margin-top: -458px;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--wine);
  color: #fff;
}

.contact-intro {
  display: flex;
  min-height: 720px;
  padding: 110px clamp(30px, 6vw, 100px);
  justify-content: center;
  flex-direction: column;
  background:
    linear-gradient(rgba(64,16,30,.74), rgba(64,16,30,.86)),
    url("/images/hero-01.png") 48% center / cover;
}

.contact-intro h2 {
  max-width: 520px;
  margin: 28px 0 25px;
  font: 500 clamp(46px, 5vw, 76px)/0.95 var(--serif);
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.contact-intro > p:not(.section-number) {
  max-width: 430px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.9;
}

.light-button {
  align-self: flex-start;
}

.contact-details {
  padding: 110px clamp(30px, 7vw, 120px);
  background: var(--paper-deep);
  color: var(--ink);
}

.contact-details > h3 {
  margin: 0 0 55px;
  font: 500 clamp(38px, 4vw, 58px)/1 var(--serif);
}

.contact-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.contact-row > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.contact-row h4 {
  margin: 0 0 9px;
  font: 500 24px/1 var(--serif);
}

.contact-row a {
  color: #6a5c5f;
  font-size: 12px;
  line-height: 1.7;
  transition: color 200ms ease;
}

.contact-row a:hover {
  color: var(--wine);
}

.fax-row {
  border-bottom: 1px solid var(--line);
}

footer {
  display: grid;
  min-height: 180px;
  padding: 45px clamp(24px, 5vw, 78px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  background: #1c1315;
  color: #eee4de;
}

footer nav {
  display: flex;
  gap: 26px;
}

footer > p {
  justify-self: end;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.whatsapp {
  position: fixed;
  z-index: 30;
  right: 28px;
  bottom: 26px;
  display: flex;
  height: 54px;
  padding-left: 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 13px 38px rgba(36, 26, 28, 0.24);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 250ms ease;
}

.whatsapp:hover {
  transform: translateY(-4px);
}

.whatsapp b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  font-size: 18px;
}

@keyframes hero-reveal {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 17px;
    height: 1px;
    background: currentColor;
  }

  .mobile-nav nav {
    position: absolute;
    top: 82px;
    right: 20px;
    display: flex;
    width: min(320px, calc(100vw - 40px));
    padding: 22px;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 24px 60px rgba(25, 10, 15, 0.22);
  }

  .mobile-nav nav a {
    display: flex;
    padding: 16px 5px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    font: 500 22px var(--serif);
  }

  .mobile-nav nav span {
    color: var(--gold);
    font: 600 8px var(--sans);
    letter-spacing: .15em;
  }

  .hero {
    min-height: 930px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(570px, auto) 360px;
  }

  .hero-copy {
    padding-bottom: 90px;
  }

  .hero-visual {
    grid-row: 2;
  }

  .hero::before {
    left: auto;
    right: -90px;
  }

  .hero-orbit {
    right: 6%;
    bottom: 24px;
    width: 115px;
    height: 115px;
  }

  .hero-orbit span {
    font-size: 42px;
  }

  .hero-caption {
    display: none;
  }

  .scroll-cue {
    bottom: 380px;
  }

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

  .about-image {
    min-height: 580px;
  }

  .about-copy {
    max-width: none;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    min-height: 620px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > p {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 84px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .hero {
    min-height: 850px;
    grid-template-rows: minmax(550px, auto) 300px;
  }

  .hero-copy {
    padding-top: 128px;
    padding-bottom: 75px;
  }

  .hero h1 {
    margin-bottom: 30px;
    font-size: clamp(58px, 18vw, 78px);
  }

  .hero h1 em {
    margin-left: 10px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-body {
    font-size: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-orbit {
    width: 94px;
    height: 94px;
  }

  .hero-orbit span {
    font-size: 35px;
  }

  .hero-orbit small {
    font-size: 7px;
  }

  .about,
  .gallery-section {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .section-heading,
  .gallery-heading {
    margin-bottom: 45px;
    grid-template-columns: 34px 1fr;
  }

  .section-heading h2 {
    padding-bottom: 17px;
    font-size: 52px;
  }

  .gallery-heading > p:last-child {
    display: none;
  }

  .about-image {
    min-height: 480px;
  }

  .about-image > span {
    right: -20px;
    font-size: 170px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-copy .dropcap {
    font-size: 21px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid figure,
  .gallery-portrait:nth-of-type(3),
  .gallery-portrait:nth-of-type(4) {
    width: 100%;
    height: 480px;
    min-height: 0;
    margin: 0;
    grid-row: auto;
  }

  .gallery-wide {
    height: 360px !important;
  }

  .contact-intro,
  .contact-details {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .contact-intro {
    min-height: 580px;
  }

  .contact-row {
    grid-template-columns: 35px 1fr;
  }

  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .whatsapp {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp > span {
    display: none;
  }

  .whatsapp {
    height: 52px;
    padding-left: 0;
  }
}

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