@font-face {
  font-family: Cormorant;
  src: url("/assets/cormorant-garamond-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("/assets/cormorant-garamond-latin-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/dm-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #fbf5e9;
  --wine: #652a35;
  --ink: #3d2527;
  --muted: #735c57;
  --line: #dfd1c1;
  --pink: #eddbd0;
  --serif: Cormorant, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 6px;
}
::selection {
  background: var(--wine);
  color: var(--cream);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -90px;
  z-index: 99;
  background: var(--wine);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 112px;
  margin: 0 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -1.3px;
}
.brand-name b {
  font-weight: 500;
  font-size: 44px;
}
.brand-dot {
  color: var(--wine);
}
.brand-tagline {
  font-size: 9px;
  letter-spacing: 2.7px;
  margin-top: 8px;
}
.header nav {
  display: flex;
  gap: 38px;
  font-size: 14px;
}
.header nav a {
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.header nav a:hover:after {
  transform: scaleX(1);
}
.header-order {
  border: 1px solid var(--wine);
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 14px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-order:hover {
  background: var(--wine);
  color: var(--cream);
}
.hero {
  max-width: 1600px;
  margin: auto;
  min-height: 740px;
  padding: 58px 5.5% 64px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--wine);
  margin: 0 0 25px;
}
.hero h1 {
  font: 500 clamp(76px, 7.4vw, 113px)/0.91 var(--serif);
  letter-spacing: -4px;
  margin: 0 0 28px;
}
.hero h1 em {
  color: var(--wine);
  font-weight: 500;
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 27px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 56px;
  padding: 14px 25px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-primary {
  background: var(--wine);
  color: var(--cream);
}
.button:hover {
  transform: translateY(-2px);
  background: #4c1e27;
}
.button span {
  font-size: 22px;
  transition: transform 0.2s;
}
.button:hover span {
  transform: translate(2px, -2px);
}
.text-link {
  display: flex;
  width: fit-content;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  font-size: 14px;
}
.hero-menu {
  margin-top: 20px;
}
.hero-art {
  position: relative;
  padding-right: 18px;
}
.hero-photo {
  height: 565px;
  border-radius: 46% 46% 3px 3px;
  overflow: hidden;
  background: #e6d9c7;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: 50% 43%;
}
.hero-seal {
  position: absolute;
  right: -12px;
  bottom: 46px;
  border: 1px solid var(--wine);
  outline: 7px solid var(--cream);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
}
.hero-seal span {
  font-size: 9px;
  letter-spacing: 1.8px;
}
.hero-seal i {
  font-style: normal;
  font-size: 43px;
  line-height: 1.3;
}
.photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  font-size: 11px;
  color: var(--muted);
}
.photo-caption > span:first-child {
  font-style: italic;
}
.ribbon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
  padding: 21px 20px;
  border-block: 1px solid var(--line);
  color: var(--wine);
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 2.2px;
}
.ribbon span:nth-child(even) {
  font-size: 25px;
  line-height: 1;
}
.section {
  padding: 100px 7%;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.section-heading h2 {
  font: 500 66px/0.99 var(--serif);
  letter-spacing: -1.4px;
  margin: 0;
}
.section-heading em {
  font-weight: 500;
  color: var(--wine);
}
.section-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 3px;
}
@media (min-width: 1600px) {
  .header {
    max-width: 1424px;
    margin: auto;
  }
}
@media (max-width: 1000px) {
  .hero {
    gap: 28px;
    min-height: 640px;
    padding-top: 45px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-photo {
    height: 480px;
  }
  .header nav {
    gap: 20px;
  }
  .header-order {
    padding: 10px 16px;
  }
  .hero-seal {
    width: 108px;
    height: 108px;
  }
  .section-heading h2 {
    font-size: 56px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 30px;
  }
  .header {
    height: 90px;
    margin: 0 6%;
    gap: 12px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-name b {
    font-size: 35px;
  }
  .brand-tagline {
    font-size: 8px;
    letter-spacing: 1.7px;
  }
  .header nav {
    display: none;
  }
  .header-order {
    font-size: 12px;
    padding: 9px 12px;
    gap: 12px;
    min-height: 44px;
  }
  .hero {
    padding: 42px 6% 34px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.65px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: 82px;
    letter-spacing: -2.9px;
    line-height: 0.92;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .desktop-break {
    display: none;
  }
  .hero-art {
    padding: 0 8px 0 0;
  }
  .hero-photo {
    height: 405px;
    border-radius: 45% 45% 2px 2px;
  }
  .hero-seal {
    right: -1px;
    bottom: 43px;
    width: 106px;
    height: 106px;
  }
  .hero-menu {
    margin-top: 18px;
  }
  .photo-caption {
    font-size: 10px;
  }
  .ribbon {
    justify-content: flex-start;
    gap: 25px;
    padding-block: 17px;
    font-size: 10px;
  }
  .section {
    padding: 65px 6%;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 54px;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 22px;
  }
  .button {
    font-size: 14px;
  }
  .hero-seal span {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
#product-list {
  margin-top: 65px;
}
.product {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  align-items: center;
  gap: 8%;
  margin-top: 90px;
}
.product:first-child {
  margin-top: 0;
}
.product-visual {
  position: relative;
  overflow: hidden;
  background: #ece2d6;
  aspect-ratio: 1.19;
}
.product-visual img {
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product:hover .product-visual img {
  transform: scale(1.025);
}
.product-number {
  position: absolute;
  left: 22px;
  bottom: 16px;
  font: 500 34px var(--serif);
  color: var(--wine);
}
.product-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}
.product-copy h3 {
  font: 500 clamp(42px, 4.3vw, 63px)/1 var(--serif);
  letter-spacing: -1.5px;
  margin: 0 0 22px;
}
.product-copy > p:not(.eyebrow) {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 22px;
}
.product-note {
  display: block;
  font: italic 500 23px var(--serif);
  color: var(--wine);
  margin-bottom: 30px;
}
.product-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 230px;
  min-height: 50px;
  border-bottom: 1px solid var(--wine);
  font-size: 14px;
  color: var(--wine);
  gap: 25px;
}
.product-order span {
  font-size: 25px;
  transition: transform 0.25s;
}
.product-order:hover span {
  transform: translate(3px, -3px);
}
.product-banoffee {
  grid-template-columns: 1fr 1.17fr;
}
.product-banoffee .product-visual {
  order: 2;
  border-radius: 50% 50% 0 0;
  aspect-ratio: 1.06;
}
.product-banoffee .product-copy {
  order: 1;
  padding-left: 35px;
}
.product-holandesa .product-visual {
  border-radius: 2px 75px 2px 2px;
}
.product-chocolate {
  background: var(--wine);
  color: var(--cream);
  gap: 7%;
  padding-right: 6%;
}
.product-chocolate .product-visual {
  aspect-ratio: 0.98;
  background: #4e2927;
}
.product-chocolate .product-copy .eyebrow,
.product-chocolate .product-copy > p:not(.eyebrow),
.product-chocolate .product-note,
.product-chocolate .product-order {
  color: var(--cream);
}
.product-chocolate .product-order {
  border-color: #cba4a2;
}
.product-chocolate .product-number {
  color: var(--cream);
}
.product-chocolate .product-copy h3 {
  font-size: 55px;
}
.product-limao .product-visual {
  aspect-ratio: 1.27;
  border-radius: 100px 2px 2px 2px;
}
.story {
  background: var(--wine);
  color: var(--cream);
  margin-top: 15px;
  padding: 90px 7%;
}
.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12%;
  align-items: center;
  max-width: 1180px;
  margin: auto;
}
.story-portrait {
  position: relative;
  max-width: 355px;
  margin: auto;
  width: 100%;
  padding-bottom: 30px;
}
.story-portrait img {
  width: 100%;
  height: 455px;
  object-position: 50% 30%;
  border-radius: 48% 48% 2px 2px;
}
.portrait-signature {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 4px;
  width: 100%;
  font: italic 500 39px var(--serif);
  transform: rotate(-6deg);
}
.story .eyebrow {
  color: #f4daca;
  font-size: 11px;
}
.story h2 {
  font: 500 clamp(46px, 4.7vw, 68px)/1.01 var(--serif);
  letter-spacing: -1px;
  margin: 0 0 28px;
}
.story h2 em {
  font-weight: 500;
}
.story-copy > p:not(.eyebrow) {
  max-width: 480px;
  font-size: 15px;
  color: #f3e5d9;
  line-height: 1.9;
  margin: 0 0 17px;
}
.story-signoff {
  display: block;
  margin-top: 30px;
  font: italic 500 25px var(--serif);
  color: #f5d6c6;
}
.closing {
  text-align: center;
  padding-block: 100px 110px;
}
.closing h2 {
  font: 500 clamp(60px, 6.4vw, 91px)/1.02 var(--serif);
  letter-spacing: -2px;
  margin: 0 0 25px;
}
.closing h2 em {
  color: var(--wine);
  font-weight: 500;
}
.closing > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.closing-local {
  display: block;
  margin-top: 17px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
}
.footer {
  background: #ede1d2;
  padding: 50px 6% 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
.footer .brand {
  align-self: center;
}
.footer > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  align-self: center;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer-contact > span:first-child {
  font-size: 11px;
  letter-spacing: 1.6px;
}
.footer-contact > a {
  font: 500 29px var(--serif);
  border-bottom: 1px solid #c7b9aa;
}
.footer-contact > span:last-child {
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cdbdad;
  padding-block: 22px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > a {
  padding: 8px 0;
  margin-top: -8px;
}
.mobile-contact {
  display: none;
}
[data-reveal] {
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].reveal-ready {
  opacity: 0.1;
  transform: translateY(25px);
}
@media (max-width: 1000px) {
  .product {
    gap: 6%;
    margin-top: 65px;
  }
  .product-copy h3 {
    font-size: 48px;
  }
  .product-chocolate .product-copy h3 {
    font-size: 46px;
  }
  .product-chocolate {
    padding-right: 4%;
  }
  .product-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .product-note {
    font-size: 21px;
  }
  .product-banoffee .product-copy {
    padding-left: 0;
  }
  .story-inner {
    gap: 8%;
  }
  .story-portrait img {
    height: 405px;
  }
}
@media (max-width: 700px) {
  #product-list {
    margin-top: 35px;
  }
  .product,
  .product-banoffee {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 52px;
  }
  .product-visual {
    aspect-ratio: 1.2;
  }
  .product-copy {
    padding: 0 4px;
  }
  .product-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
  }
  .product-copy h3 {
    font-size: 46px;
    margin-bottom: 16px;
  }
  .product-copy > p:not(.eyebrow) {
    font-size: 16px;
    max-width: none;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .product-note {
    margin-bottom: 15px;
    font-size: 23px;
  }
  .product-order {
    font-size: 14px;
    max-width: none;
  }
  .product-banoffee .product-visual {
    order: 0;
    aspect-ratio: 1.18;
    border-radius: 80px 80px 0 0;
  }
  .product-banoffee .product-copy {
    padding: 0 4px;
    order: 1;
  }
  .product-chocolate {
    padding: 0 0 29px;
    gap: 26px;
    margin-inline: -6.82%;
  }
  .product-chocolate .product-visual {
    aspect-ratio: 1.08;
  }
  .product-chocolate .product-copy {
    padding: 0 7%;
  }
  .product-chocolate .product-copy h3 {
    font-size: 48px;
  }
  .product-limao .product-visual {
    border-radius: 70px 2px 2px 2px;
  }
  .story {
    padding: 62px 8%;
    margin-top: 0;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-portrait {
    max-width: 275px;
  }
  .story-portrait img {
    height: 365px;
  }
  .story .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .story h2 {
    font-size: 49px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.85;
  }
  .story-signoff {
    font-size: 26px;
  }
  .closing {
    padding-block: 68px 75px;
  }
  .closing .eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
    max-width: 270px;
    margin-inline: auto;
  }
  .closing h2 {
    font-size: 60px;
  }
  .closing > p:not(.eyebrow) {
    font-size: 15px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 38px 7% 72px;
  }
  .footer > p {
    display: none;
  }
  .footer-bottom {
    margin-top: 7px;
    font-size: 11px;
    gap: 14px;
  }
  .mobile-contact {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 6% calc(10px + env(safe-area-inset-bottom));
    background: var(--cream);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform 0.3s;
    visibility: hidden;
  }
  .mobile-contact.is-visible {
    transform: translateY(0);
    visibility: visible;
  }
  .mobile-contact > span {
    font: italic 500 21px var(--serif);
  }
  .mobile-contact > a {
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 9px 18px;
    background: var(--wine);
    color: var(--cream);
  }
}
.brand {
  position: relative;
  padding-left: 63px;
  min-height: 63px;
  justify-content: center;
}
.brand-symbol {
  position: absolute;
  left: 0;
  top: 0;
  width: 53px;
  height: 62px;
  object-fit: contain;
}
.hero-photo img {
  object-position: 50% 50%;
}
.brand-tagline {
  font-size: 9px;
  letter-spacing: 2.1px;
}
.footer .brand {
  width: fit-content;
}
@media (max-width: 1000px) and (min-width: 701px) {
  .header {
    gap: 14px;
  }
  .header nav {
    gap: 18px;
    font-size: 13px;
  }
  .header-order {
    gap: 12px;
    padding-inline: 12px;
  }
  .brand-name {
    font-size: 26px;
  }
  .brand-name b {
    font-size: 36px;
  }
  .brand-tagline {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .brand {
    padding-left: 54px;
  }
  .brand-symbol {
    width: 45px;
  }
}
@media (max-width: 700px) {
  .brand {
    padding-left: 46px;
    min-height: 53px;
  }
  .brand-symbol {
    width: 39px;
    height: 51px;
  }
  .brand-name {
    font-size: 22px;
  }
  .brand-name b {
    font-size: 32px;
  }
  .brand-tagline {
    font-size: 7px;
    letter-spacing: 1.45px;
  }
  .header-order {
    font-size: 12px;
    padding-inline: 10px;
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding-top: 28px;
    gap: 26px;
  }
  .hero h1 {
    font-size: 70px;
    line-height: 0.94;
    margin-bottom: 20px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }
  .hero-description {
    margin-bottom: 21px;
  }
  .hero-menu {
    margin-top: 15px;
  }
  .hero-photo {
    height: 365px;
  }
}
.closing {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 6%;
}
.closing-photo {
  height: 380px;
  overflow: hidden;
  border-radius: 48% 48% 2px 2px;
}
.closing-photo img {
  width: 100%;
  height: 100%;
  object-position: center;
}
.closing-copy h2 {
  font-size: clamp(58px, 5.6vw, 80px);
}
.closing-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .closing-copy h2 {
    font-size: 61px;
  }
  .closing .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .closing-photo {
    height: 330px;
  }
}
@media (max-width: 700px) {
  .closing {
    display: flex;
    flex-direction: column;
    gap: 29px;
  }
  .closing-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }
  .closing-copy h2 {
    font-size: 57px;
  }
  .closing-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
}
.story-portrait img {
  object-position: 50% 0;
}
@media (max-width: 1000px) {
  .desktop-break {
    display: none;
  }
}
/* Keep Tereza's complete original portrait visible at every breakpoint. */
.story-portrait {
  max-width: 300px;
  padding-bottom: 38px;
}
.story-portrait img {
  height: auto;
  aspect-ratio: 505 / 1033;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
}
.portrait-signature {
  bottom: 0;
}
@media (max-width: 700px) {
  .story-portrait {
    max-width: 255px;
  }
  .story-portrait img {
    height: auto;
    aspect-ratio: 505 / 1033;
    object-fit: contain;
  }
}
