:root {
  --cream: #FAF7F2;
  --cream-deep: #DED1C2;
  --card: #F1E9DF;
  --accent: #DFA38D;
  --ink: #2F2D2B;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1104px, calc(100vw - 148px));
  --shell-wide: min(1304px, calc(100vw - 148px));
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell-wide {
  width: var(--shell-wide);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 10vw, 154px);
}

.skip-link {
  position: fixed;
  z-index: 120;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 92px;
  color: var(--cream);
  transition: height 240ms ease, color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(250, 247, 242, .94);
  box-shadow: 0 10px 35px rgba(47, 45, 43, .08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: max-content;
  flex-direction: column;
  color: inherit;
}

.brand-name {
  font-family: var(--serif);
  font-size: 31px;
  line-height: .84;
  letter-spacing: -.03em;
}

.brand-subtitle {
  margin-top: 9px;
  padding-left: 2px;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 2.7vw, 44px);
}

.primary-nav a {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 13px 20px;
  border: 1px solid rgba(250, 247, 242, .75);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(47, 45, 43, .45);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(.985);
}

.button-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.button-accent:hover,
.button-accent:focus-visible {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.simple-link {
  display: inline-flex;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(47, 45, 43, .45);
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.simple-link span {
  transition: transform 180ms ease;
}

.simple-link:hover span,
.simple-link:focus-visible span {
  transform: translateX(4px);
}

.simple-link:hover,
.simple-link:focus-visible {
  border-color: var(--accent);
}

.simple-link-light {
  color: var(--cream);
  border-color: rgba(250, 247, 242, .6);
}

.section-label,
.card-label {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.section-label::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px 3px 0;
  background: currentColor;
  content: "";
}

.section-label.light {
  color: var(--cream);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(940px, 100dvh);
  align-items: center;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 45, 43, .74) 0%, rgba(47, 45, 43, .51) 38%, rgba(47, 45, 43, .08) 70%, rgba(47, 45, 43, .08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
}

.hero h1 {
  max-width: none;
  margin-bottom: 26px;
  font-size: clamp(72px, 6.8vw, 112px);
  line-height: .84;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.hero h1 em {
  font-weight: 400;
}

.hero-content > p {
  max-width: 480px;
  margin-bottom: 32px;
  color: rgba(250, 247, 242, .86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-actions .button,
.hero-actions .simple-link {
  font-size: 15px;
}

.intro {
  background: var(--card);
}

.intro.section {
  padding-block: clamp(120px, 11vw, 170px);
}

.intro-inner {
  display: flex;
  max-width: 1100px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.intro h2,
.section-header h2,
.why h2,
.contact h2 {
  margin-bottom: 46px;
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: .94;
}

.intro h2 em,
.section-header h2 em,
.why h2 em,
.contact h2 em {
  font-weight: 400;
}

.intro h2 {
  max-width: 1100px;
  margin-bottom: 38px;
  font-size: clamp(62px, 5.4vw, 82px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.028em;
  white-space: nowrap;
}

.intro h2 em {
  font-weight: inherit;
}

.intro-copy {
  max-width: 900px;
  margin: 0 auto 42px;
  color: rgba(47, 45, 43, .74);
  font-size: clamp(23px, 1.75vw, 26px);
  line-height: 1.55;
  text-align: center;
}

.intro-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.intro-copy em {
  color: var(--ink);
  font-weight: 500;
}

.intro-cta {
  width: min(100%, 320px);
  min-height: 64px;
  padding: 19px 42px;
  border-radius: 999px;
  font-size: 18px;
  letter-spacing: .025em;
}

.services {
  background: var(--cream);
}

.section-header.centered {
  max-width: 960px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-header.centered .section-label::before {
  display: none;
}

.section-header.centered .section-label {
  margin-bottom: 20px;
}

.services .section-header .section-label {
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.service-card {
  display: flex;
  height: 600px;
  border-radius: 26px;
  flex-direction: column;
  background: color-mix(in srgb, var(--accent) 38%, var(--cream));
  overflow: hidden;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.service-card:nth-child(even) {
  background: var(--card);
}

.service-card:hover {
  box-shadow: 0 20px 44px rgba(47, 45, 43, .11);
  transform: translateY(-6px);
}

.service-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--cream-deep);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
}

.service-card:nth-child(1) .service-image img {
  object-position: center 62%;
}

.service-card:nth-child(2) .service-image img {
  object-position: center 34%;
}

.service-card:nth-child(3) .service-image img,
.service-card:nth-child(4) .service-image img {
  object-position: center 30%;
}

.service-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(47, 45, 43, .38);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
  filter: contrast(.97) brightness(1.03);
}

.service-content {
  display: flex;
  min-height: 0;
  padding: 25px 24px 23px;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.service-content h3 {
  display: flex;
  min-height: 96px;
  margin-bottom: 12px;
  align-items: flex-start;
  font-size: clamp(29px, 2vw, 35px);
  line-height: .98;
}

.service-content > p:not(.card-label) {
  min-height: 132px;
  margin-bottom: 16px;
  color: rgba(47, 45, 43, .69);
  font-size: 15px;
  line-height: 1.55;
}

.service-content .simple-link {
  width: 100%;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(47, 45, 43, .19);
  border-bottom: 0;
  justify-content: space-between;
  font-size: 14px;
}

.services-footer {
  display: flex;
  margin-top: 85px;
  padding-top: 28px;
  border-top: 1px solid rgba(47, 45, 43, .18);
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.services-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
}

.services-footer .button {
  font-size: 16px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 830px;
  background: var(--cream-deep);
}

.about-copy {
  display: flex;
  padding: clamp(90px, 10vw, 150px) clamp(50px, 8vw, 125px) clamp(100px, 11vw, 165px) max(112px, calc((100vw - 1304px) / 2 + 38px));
  align-items: center;
}

.about-copy-inner {
  max-width: 570px;
}

.about h2 {
  margin-bottom: 38px;
  font-size: clamp(62px, 6vw, 94px);
  line-height: .9;
}

.about h2 em {
  font-weight: 400;
}

.about-lead {
  max-width: 500px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.18;
}

.about-copy p:not(.section-label, .about-lead) {
  max-width: 550px;
  color: rgba(47, 45, 43, .73);
  font-size: 18px;
}

.about .section-label {
  font-size: 14px;
}

.about .section-label::before {
  display: none;
}

.about-copy .button {
  margin-top: 18px;
  font-size: 16px;
}

.about-image {
  position: relative;
  min-height: 830px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.gallery {
  background: var(--cream);
}

.gallery .section-label {
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  height: 650px;
  grid-template-columns: .7fr 1.35fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item-small:first-child {
  grid-column: 1;
  grid-row: 1;
}

.gallery-item-wide {
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery-item-wide img {
  object-position: 60% center;
}

.gallery-item-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-item-small:last-child {
  grid-column: 1;
  grid-row: 2;
}

.gallery-item-small:last-child img {
  object-position: center;
}

.gallery-note {
  max-width: 600px;
  margin: 25px 0 0 auto;
  color: rgba(47, 45, 43, .53);
  font-size: 12px;
  text-align: right;
}

.why {
  background: var(--card);
}

.why-layout {
  display: grid;
  padding-inline: 38px;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(70px, 9vw, 145px);
}

.why-intro {
  max-width: 610px;
}

.why .section-label {
  font-size: 14px;
}

.why .section-label::before {
  display: none;
}

.why-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(62px, 6vw, 92px);
  line-height: .9;
}

.why-intro-text {
  max-width: 510px;
  margin-bottom: 38px;
  color: rgba(47, 45, 43, .68);
  font-size: 18px;
}

.why-image {
  height: 390px;
  margin: 0;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 700ms var(--ease);
}

.why-image:hover img {
  transform: scale(1.025);
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  position: relative;
  display: grid;
  min-height: 158px;
  margin-inline: -22px;
  padding: 30px 22px;
  border-radius: 22px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 28px;
  transition: background-color 240ms ease, transform 240ms ease;
}

.why-item:not(:last-child)::after {
  position: absolute;
  left: 22px;
  bottom: 0;
  width: min(calc(100% - 80px), 610px);
  height: 1px;
  background: rgba(47, 45, 43, .17);
  content: "";
  transition: opacity 200ms ease;
}

.why-item:hover,
.why-item:focus-within {
  background: var(--cream);
  transform: translateX(5px);
}

.why-item:hover::after,
.why-item:focus-within::after {
  opacity: 0;
}

.why-item:has(+ .why-item:hover)::after,
.why-item:has(+ .why-item:focus-within)::after {
  opacity: 0;
}

.why-number {
  display: grid;
  width: 62px;
  height: 62px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 220ms ease, background-color 220ms ease;
}

.why-item:hover .why-number {
  background: var(--accent);
}

.why-item h3 {
  margin-bottom: 10px;
  font-size: clamp(31px, 2.5vw, 38px);
  line-height: 1;
}

.why-item p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(47, 45, 43, .65);
  font-size: 21px;
  line-height: 1.48;
}

.testimonial {
  padding-block: clamp(110px, 11vw, 165px);
  background: var(--cream-deep);
}

.testimonial-inner {
  display: block;
}

.testimonial .section-label::before {
  display: none;
}

.testimonial .section-label {
  font-size: 14px;
}

.testimonial-header {
  margin-bottom: 62px;
  text-align: center;
}

.testimonial h2 {
  margin: 0 auto;
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: .92;
}

.testimonial h2 em {
  font-weight: 400;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.review-card {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 62px 56px 118px;
  border: 1px solid rgba(47, 45, 43, .07);
  border-radius: 26px;
  flex-direction: column;
  background: var(--cream);
  box-shadow: 0 18px 52px rgba(47, 45, 43, .08);
  overflow: hidden;
}

.review-card:first-child {
  background-image: url("assets/Virágokbal.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-card:nth-child(2) {
  background-image: url("assets/Virágokjobb.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, .52);
  content: "";
  pointer-events: none;
}

.review-card blockquote {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  margin: 0;
  flex-direction: column;
}

.review-copy {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: column;
}

.review-copy > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 2.25vw, 37px);
  font-weight: 500;
  line-height: 1.24;
  text-wrap: balance;
}

.review-meta {
  display: flex;
  margin-top: auto;
  padding-top: 28px;
  flex-direction: column;
  align-items: flex-end;
  font-size: 15px;
  text-align: right;
}

.review-meta strong {
  font-size: 17px;
  font-weight: 600;
}

.review-quote {
  position: absolute;
  z-index: 1;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 78px;
  line-height: 1;
}

.review-quote-open {
  top: 25px;
  left: 38px;
}

.review-quote-close {
  position: static;
  display: block;
  align-self: flex-end;
  margin-top: 4px;
  font-size: 78px;
  line-height: .7;
  text-align: right;
}

.review-card:first-child .review-copy {
  margin-left: auto;
}

.review-card:first-child .review-copy > p {
  text-align: right;
  transform: translateX(calc(-1 * clamp(16px, 2vw, 30px)));
}

.review-card:first-child .review-quote-open {
  left: 70px;
}

.review-card:first-child .review-meta {
  align-items: flex-end;
  align-self: flex-end;
  text-align: right;
}

.review-card:nth-child(2) .review-copy {
  margin-right: auto;
}

.review-card:nth-child(2) .review-copy > p {
  text-align: left;
  transform: translateX(clamp(16px, 2vw, 30px));
}

.review-card:nth-child(2) .review-quote-close {
  transform: translateX(60px);
}

.review-card:nth-child(2) .review-meta {
  align-items: flex-start;
  align-self: flex-start;
  text-align: left;
}

.booking {
  position: relative;
  display: flex;
  min-height: 740px;
  align-items: center;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.booking > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.booking-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 45, 43, .8) 0%, rgba(47, 45, 43, .55) 45%, rgba(47, 45, 43, .1) 76%);
}

.booking-content {
  position: relative;
  z-index: 2;
  left: -57px;
}

.booking .section-label {
  font-size: 14px;
}

.booking .section-label::before {
  display: none;
}

.booking h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(72px, 7.5vw, 118px);
  line-height: .86;
}

.booking h2 em {
  font-weight: 400;
}

.booking-content > p:not(.section-label) {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(250, 247, 242, .83);
  font-size: 19px;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.booking-actions .button,
.booking-actions .simple-link {
  font-size: 16px;
}

.contact {
  background: var(--cream);
}

.contact > .shell-wide {
  padding-inline: 38px;
}

.contact-heading {
  display: flex;
  margin-bottom: 70px;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.contact-heading .section-label {
  margin-bottom: 20px;
  padding-top: 0;
  font-size: 14px;
}

.contact-heading .section-label::before {
  display: none;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 4vw, 56px);
}

.contact-details {
  padding-top: 22px;
  padding-left: 0;
}

.contact-details h3 {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1;
}

.contact-details > p {
  margin-bottom: 45px;
  color: rgba(47, 45, 43, .65);
  font-size: 20px;
}

.contact-details dl {
  width: min(100%, 432px);
  margin-bottom: 38px;
}

.contact-details dl > div {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgba(47, 45, 43, .17);
  grid-template-columns: 135px minmax(0, 1fr);
  column-gap: 18px;
}

.contact-details dl > div:first-child {
  border-top: 0;
}

.contact-details dl > div:last-child {
  border-bottom: 1px solid rgba(47, 45, 43, .17);
}

.contact-details dt {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-details dd {
  margin: 0;
  color: rgba(47, 45, 43, .72);
  font-size: 19px;
}

.contact-details dd a {
  transition: opacity 180ms ease;
}

.contact-details dd a:hover {
  opacity: .55;
}

.contact-details > .simple-link {
  font-size: 16px;
}

.contact-form-wrap {
  width: min(100%, 620px);
  padding: clamp(30px, 3.4vw, 48px);
  border: 1px solid rgba(47, 45, 43, .08);
  border-radius: 24px;
  justify-self: end;
  background: #fff;
  box-shadow: 0 18px 48px rgba(47, 45, 43, .08);
}

.contact-form {
  position: relative;
}

.form-heading {
  text-align: center;
}

.form-heading .section-label {
  margin-bottom: 12px;
  font-size: 12px;
}

.form-heading .section-label::before {
  display: none;
}

.form-heading h3 {
  margin-bottom: 30px;
  font-size: 49px;
  line-height: 1;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  position: relative;
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(47, 45, 43, .16);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: var(--cream);
  background: color-mix(in srgb, var(--cream) 58%, #fff);
  font: inherit;
  font-size: 16px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 49px;
  padding: 10px 14px;
}

.field textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(47, 45, 43, .45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(223, 163, 141, .22);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--accent);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--ink);
  font-size: 12px;
}

.field.has-error .field-error,
.contact-form.consent-invalid .consent-error {
  display: block;
}

.consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(47, 45, 43, .66);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkmark {
  display: grid;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(47, 45, 43, .45);
  border-radius: 5px;
  place-items: center;
}

.consent input:focus-visible + .checkmark {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent input:checked + .checkmark {
  background: var(--ink);
}

.consent input:checked + .checkmark::after {
  color: var(--cream);
  content: "✓";
  font-size: 11px;
}

.form-footer {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.form-footer > span {
  color: rgba(47, 45, 43, .47);
  font-size: 9px;
  font-style: italic;
}

.form-footer .button {
  min-height: 54px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
}

.form-success {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  padding: 35px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream-deep);
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.form-success.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.form-success strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.form-success span {
  font-size: 15px;
}

.map-card {
  margin-top: 90px;
  background: var(--card);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
  filter: saturate(.25) sepia(.16) contrast(.92);
}

.map-caption {
  display: flex;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.site-footer {
  padding: 55px 0 25px;
  color: #000;
  background-color: #D8CABA;
  background-image: linear-gradient(rgba(216, 202, 186, .65), rgba(216, 202, 186, .65)), url("assets/cosmfooter.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-main {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-main nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-main nav a,
.footer-main > a:last-child {
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible,
.footer-main > a:last-child:hover,
.footer-main > a:last-child:focus-visible {
  color: #A95640;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  border-top: 1px solid #E8DED2;
  justify-content: space-between;
  gap: 25px;
  color: #000;
  font-size: 14px;
}

.mobile-booking {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 10px 25px rgba(47, 45, 43, .19);
  font-size: 11px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(.4, 0, .2, 1), transform 900ms cubic-bezier(.4, 0, .2, 1);
}

.reveal-delay-1 {
  transition-delay: 180ms;
}

.hero .reveal {
  transform: translateY(26px);
  transition-duration: 900ms;
  transition-delay: 0ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  :root {
    --shell: min(100% - 132px, 944px);
    --shell-wide: min(100% - 132px, 984px);
  }

  .header-inner {
    grid-template-columns: 180px 1fr 155px;
  }

  .primary-nav {
    gap: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 28px;
  }

  .service-card {
    height: 620px;
    min-height: 0;
  }

  .service-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .about-copy {
    padding-left: max(104px, calc((100vw - 984px) / 2 + 38px));
    padding-right: 65px;
  }

  .about h2 {
    font-size: clamp(57px, 6.5vw, 75px);
  }

  .gallery-grid {
    height: 560px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 80px);
    --shell-wide: calc(100% - 80px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 74px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    padding: 110px 25px 55px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    color: var(--ink);
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: 37px;
    font-weight: 400;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--ink);
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(68px, 11vw, 92px);
    white-space: normal;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(47, 45, 43, .72), rgba(47, 45, 43, .28));
  }

  .intro h2 {
    white-space: normal;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 105px 78px 115px;
  }

  .about-copy-inner {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .about h2 {
    font-size: clamp(62px, 11vw, 88px);
  }

  .about-image {
    min-height: 760px;
  }

  .gallery-grid {
    height: 780px;
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: 1fr 1fr;
  }

  .gallery-item-small:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-item-wide {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-item-tall {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-item-small:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-intro {
    max-width: none;
  }

  .why-image {
    height: 520px;
  }

  .testimonial h2 {
    font-size: clamp(58px, 10vw, 78px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 360px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact > .shell-wide {
    padding-inline: 0;
  }

  .contact-details {
    padding-left: 0;
  }

  .contact-form-wrap {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .booking-content {
    left: 0;
  }

  .contact-details {
    max-width: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main nav {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 40px);
    --shell-wide: calc(100% - 40px);
  }

  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

  .section {
    padding-block: 88px;
  }

  .mobile-booking {
    display: none;
  }

  .intro.section {
    padding-block: 90px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-subtitle {
    margin-top: 7px;
  }

  .hero {
    min-height: 790px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(47, 45, 43, .88) 0%, rgba(47, 45, 43, .6) 54%, rgba(47, 45, 43, .18) 100%);
  }

  .hero-content {
    padding: 110px 0 82px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(58px, 17vw, 76px);
    line-height: .86;
  }

  .hero-content > p {
    max-width: 340px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .intro h2,
  .section-header h2,
  .why h2,
  .contact h2 {
    margin-bottom: 34px;
    font-size: clamp(50px, 14vw, 68px);
  }

  .intro-copy {
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.55;
  }

  .section-header.centered {
    margin-bottom: 48px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-card {
    height: auto;
    min-height: 0;
  }

  .service-image {
    height: auto;
    aspect-ratio: 5 / 4;
  }

  .service-content {
    padding: 27px 23px 25px;
  }

  .service-content h3 {
    min-height: 0;
    font-size: 39px;
  }

  .service-content > p:not(.card-label) {
    min-height: 0;
  }

  .service-content .simple-link {
    margin-top: 18px;
  }

  .services-footer {
    margin-top: 62px;
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .services-footer .button {
    width: 100%;
  }

  .about-copy {
    padding: 88px 32px 98px;
  }

  .about h2 {
    font-size: clamp(55px, 15vw, 70px);
  }

  .about-lead {
    font-size: 30px;
  }

  .about-image {
    min-height: 580px;
  }

  .gallery-grid {
    display: grid;
    height: 840px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1.3fr 1fr;
    gap: 8px;
  }

  .gallery-item-small:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-item-wide {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .gallery-item-tall {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-item-small:last-child {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-item-small:last-child img {
    object-fit: contain;
    object-position: center;
  }

  .gallery-note {
    font-size: 11px;
  }

  .why-layout {
    padding-inline: 12px;
    gap: 55px;
  }

  .why-intro h2 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .why-intro-text {
    margin-bottom: 30px;
  }

  .why-image {
    height: 310px;
  }

  .why-item {
    min-height: 0;
    margin-inline: -10px;
    padding: 25px 10px;
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .why-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .why-item h3 {
    font-size: 30px;
  }

  .why-item p {
    font-size: 20px;
  }

  .why-item:not(:last-child)::after {
    left: 10px;
    width: calc(100% - 28px);
  }

  .testimonial {
    padding-block: 105px;
  }

  .testimonial h2 {
    font-size: clamp(54px, 15vw, 70px);
  }

  .testimonial-header {
    margin-bottom: 45px;
  }

  .review-card {
    min-height: 300px;
    padding: 48px 30px 76px;
    border-radius: 22px;
  }

  .review-copy > p {
    font-size: 29px;
  }

  .review-quote-open {
    top: 22px;
    left: 27px;
  }

  .review-card:first-child .review-quote-open {
    left: 42px;
  }

  .booking {
    min-height: 680px;
    align-items: flex-end;
  }

  .booking > img {
    object-position: 70% center;
  }

  .booking-shade {
    background: linear-gradient(0deg, rgba(47, 45, 43, .9), rgba(47, 45, 43, .18));
  }

  .booking-content {
    padding-bottom: 82px;
  }

  .booking h2 {
    font-size: clamp(60px, 17vw, 78px);
  }

  .booking-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .contact-heading .section-label {
    padding-top: 0;
  }

  .contact-heading {
    margin-bottom: 40px;
  }

  .contact-layout {
    gap: 40px;
  }

  .contact-details dl > div {
    grid-template-columns: 125px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-form-wrap {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading h3 {
    font-size: 48px;
  }

  .form-footer {
    align-items: center;
    flex-direction: column;
  }

  .form-footer .button {
    width: min(100%, 300px);
  }

  .map-card {
    margin-top: 58px;
  }

  .map-card iframe {
    height: 340px;
  }

  .map-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
