:root {
  --navy: #123d4b;
  --gold: #d2b873;
  --blue: #6c8dc8;
  --ivory: #f5f3ed;
  --paper: #fbfaf7;
  --ink: #17313a;
  --muted: #66757a;
  --white: #ffffff;
  --line: rgba(18, 61, 75, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.container-wide {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 130px 0;
}

.section-tight {
  padding: 40px 0 130px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e5d39e;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(58px, 8vw, 122px);
  color: var(--white);
}

h2 {
  font-size: clamp(48px, 5.8vw, 82px);
}

h3 {
  font-size: clamp(36px, 3.6vw, 54px);
}

p {
  margin: 0 0 22px;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(25px, 2.25vw, 35px);
  line-height: 1.28;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .3s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: #163640;
}

.btn-primary:hover {
  background: #e2cb8c;
  transform: translateY(-2px);
}

.btn-primary.dark {
  background: var(--navy);
  color: var(--white);
}

.btn-primary.dark:hover {
  background: #1b5363;
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.light-link {
  color: var(--white);
}

.text-link span {
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 120px;
  color: var(--white);
  background: transparent;
  transition:
    background .35s ease,
    height .35s ease,
    box-shadow .35s ease;
}

.site-header.scrolled {
  height: 104px;
  background: var(--navy);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  width: 180px;
  height: 100%;
  justify-self: start;
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: height .35s ease;
}

.site-header.scrolled .brand img {
  height: 72px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.main-nav a,
.nav-disabled {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-disabled {
  opacity: .45;
  cursor: default;
}

.header-book {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .48);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s ease;
}

.header-book:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 7px 0;
  transition: .25s ease;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 30, .84) 0%,
      rgba(4, 23, 30, .55) 44%,
      rgba(4, 23, 30, .1) 77%
    ),
    linear-gradient(
      0deg,
      rgba(5, 26, 32, .5),
      transparent 45%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 11vh;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 27px;
  top: 50%;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  letter-spacing: .23em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 110px;
  align-items: start;
}

.intro-copy {
  padding-top: 12px;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
  max-width: 620px;
}


/* =========================================================
   EXPERIENCE CARDS
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.experience-card {
  background: transparent;
}

.offset-card {
  margin-top: 90px;
}

.card-image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: .78;
  background: #ddd;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.card-image-wrap:hover img {
  transform: scale(1.035);
}

.card-body {
  position: relative;
  padding: 34px 8px 0;
}

.card-number {
  position: absolute;
  right: 8px;
  top: 30px;
  color: rgba(18, 61, 75, .28);
  font-family: var(--serif);
  font-size: 21px;
}

.card-body h3 {
  margin-bottom: 22px;
}

.card-body > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}


/* =========================================================
   STORY
   ========================================================= */

.story-preview {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .9fr .45fr;
  gap: 70px;
  align-items: center;
}

.story-photo-main {
  height: 690px;
  overflow: hidden;
}

.story-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.story-content {
  padding: 40px 0;
}

.story-content h2 {
  margin-bottom: 32px;
}

.story-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.story-photo-detail {
  height: 340px;
  overflow: hidden;
  align-self: end;
  margin-bottom: 52px;
}

.story-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   SIGNATURE / MATERIA PRIMA
   ========================================================= */

.signature-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.signature-copy p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.signature-copy h2 {
  margin-bottom: 28px;
}

.signature-copy .btn {
  margin-top: 18px;
}

.signature-gallery {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 24px;
}

.signature-img {
  margin: 0;
  height: 390px;
  overflow: hidden;
}

.signature-img.tall {
  height: 650px;
}

.signature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   CAFFETTERIA
   ========================================================= */

.coffee-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 690px;
  background: var(--ivory);
}

.coffee-media {
  min-height: 690px;
  overflow: hidden;
}

.coffee-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.coffee-content {
  align-self: center;
  padding: 90px clamp(50px, 7vw, 120px);
}

.coffee-content h2 {
  margin-bottom: 28px;
}

.coffee-content p:not(.eyebrow) {
  color: var(--muted);
}


/* =========================================================
   LOCATION
   ========================================================= */

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.location-copy h2 {
  margin-bottom: 28px;
}

.location-copy p:not(.eyebrow):not(.lead),
.location-copy address {
  color: var(--muted);
}

.location-copy address {
  margin: 32px 0;
}

.location-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.location-image {
  height: 670px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking-banner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.booking-bg,
.booking-overlay {
  position: absolute;
  inset: 0;
}

.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.booking-overlay {
  background: rgba(5, 31, 39, .62);
}

.booking-content {
  position: relative;
  z-index: 2;
}

.booking-content h2 {
  font-size: clamp(58px, 7vw, 100px);
}

.booking-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px auto 34px;
  color: rgba(255, 255, 255, .8);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #0c2d37;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  padding-top: 90px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-logo img {
  width: auto;
  height: 90px;
  object-fit: contain;
}

.footer-description {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-contacts a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .25s ease;
}

.footer-contacts a:hover {
  color: var(--gold);
}

.footer-separator {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .24);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
  margin-bottom: 75px;
}

.footer-instagram:hover {
  color: var(--white);
}

.footer-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  letter-spacing: .04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  transition: color .25s ease;
}

.footer-legal a:hover {
  color: var(--white);
}


/* =========================================================
   RESPONSIVE - TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1100px) {

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 100%);
    height: 100svh;
    background: var(--navy);
    padding: 140px 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    transition: right .4s var(--ease);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a,
  .nav-disabled {
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
    z-index: 3;
  }

  .menu-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-photo-detail {
    display: none;
  }
}


/* =========================================================
   RESPONSIVE - TABLET / MOBILE
   ========================================================= */

@media (max-width: 820px) {

  .container {
    width: min(calc(100% - 36px), 1180px);
  }

  .container-wide {
    width: min(calc(100% - 36px), 1440px);
  }

  .section {
    padding: 90px 0;
  }

  .section-tight {
    padding: 15px 0 90px;
  }

  .site-header {
    height: 100px;
  }

  .site-header.scrolled {
    height: 90px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    height: 70px;
  }

  .site-header.scrolled .brand img {
    height: 64px;
  }

  .header-book {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(4, 23, 30, .84) 0%,
        rgba(4, 23, 30, .3) 75%
      ),
      linear-gradient(
        90deg,
        rgba(4, 23, 30, .45),
        transparent
      );
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-side-note {
    display: none;
  }

  .intro-grid,
  .signature-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .offset-card {
    margin-top: 0;
  }

  .card-image-wrap {
    aspect-ratio: .9;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-photo-main {
    height: 520px;
  }

  .story-content {
    padding: 0;
  }

  .signature-gallery {
    gap: 14px;
  }

  .signature-img,
  .signature-img.tall {
    height: 440px;
  }

  .coffee-band {
    grid-template-columns: 1fr;
  }

  .coffee-media {
    min-height: 520px;
  }

  .coffee-content {
    padding: 75px 28px;
  }

  .location-image {
    height: 520px;
    order: -1;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-description {
    max-width: 560px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* =========================================================
   CONTACT MAP
   ========================================================= */

.contact-map-section {
  width: 100%;
  background: var(--navy);
}

.contact-map {
  width: 100%;
  height: 600px;
  overflow: hidden;
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.15);
}

@media (max-width: 820px) {

  .contact-map {
    height: 500px;
  }

}

@media (max-width: 520px) {

  .contact-map {
    height: 420px;
  }

}

/* =========================================================
   POLICY PAGES
   ========================================================= */

.policy-hero {
  background: var(--navy);
  color: var(--white);
  padding: 210px 0 100px;
}

.policy-hero h1 {
  font-size: clamp(60px, 7vw, 100px);
  margin-bottom: 28px;
}

.policy-hero-text {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.policy-section {
  padding: 110px 0 130px;
  background: var(--paper);
}

.policy-container {
  max-width: 900px;
}

.policy-intro {
  margin-bottom: 80px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.policy-intro p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
}

.policy-block {
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}

.policy-block:first-of-type {
  padding-top: 0;
}

.policy-block:last-child {
  border-bottom: 0;
}

.policy-block h2 {
  margin-bottom: 30px;
  font-size: clamp(38px, 4vw, 56px);
}

.policy-block p {
  color: var(--muted);
}

.policy-block strong {
  color: var(--ink);
}

.policy-block ul {
  margin: 24px 0 28px;
  padding-left: 22px;
  color: var(--muted);
}

.policy-block li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.policy-block a:not(.btn) {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
}

.policy-block .btn {
  margin-top: 15px;
}


@media (max-width: 820px) {

  .policy-hero {
    padding: 165px 0 75px;
  }

  .policy-section {
    padding: 80px 0 100px;
  }

  .policy-intro {
    margin-bottom: 55px;
  }

  .policy-block {
    padding: 45px 0;
  }

}


@media (max-width: 520px) {

  .policy-hero {
    padding: 145px 0 60px;
  }

  .policy-hero h1 {
    font-size: 54px;
  }

  .policy-hero-text {
    font-size: 15px;
  }

  .policy-section {
    padding: 65px 0 80px;
  }

  .policy-intro p {
    font-size: 23px;
  }

  .policy-block {
    padding: 38px 0;
  }

  .policy-block h2 {
    font-size: 38px;
  }

}


/* =========================================================
   RESPONSIVE - SMARTPHONE
   ========================================================= */

@media (max-width: 520px) {

  body {
    line-height: 1.68;
  }

  .container,
  .container-wide {
    width: calc(100% - 30px);
  }


  /* =====================================================
     HEADER MOBILE
     ===================================================== */

  .site-header {
    height: 105px;
  }

  .site-header.scrolled {
    height: 88px;
  }

  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    width: 150px;
    height: 100%;
  }

  .brand img {
    width: auto;
    height: 78px;
    max-width: 150px;
    object-fit: contain;
  }

  .site-header.scrolled .brand img {
    height: 66px;
  }


  /* =====================================================
     MOBILE MENU
     ===================================================== */

  .main-nav {
    width: 100%;
    padding: 125px 30px 40px;
  }


  /* =====================================================
     HERO MOBILE
     ===================================================== */

  .hero {
    min-height: auto;
    display: block;
    padding-top: 125px;
    padding-bottom: 65px;
  }

  .hero-media,
  .hero-overlay {
    position: absolute;
    inset: 0;
  }

  .hero-content {
    position: relative;
    padding-top: 55px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(54px, 15vw, 72px);
    line-height: .94;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 38px;
  }

  .hero-copy {
    margin-top: 28px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .text-link {
    width: auto;
  }

  .hero-side-note {
    display: none;
  }


  /* =====================================================
     ALTRE SEZIONI
     ===================================================== */

  .signature-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .signature-img,
  .signature-img.tall {
    height: 330px;
  }

  .booking-banner {
    min-height: 570px;
  }


  /* =====================================================
     FOOTER
     ===================================================== */

  .site-footer {
    padding-top: 70px;
  }

  .footer-logo img {
    height: 72px;
  }

  .footer-description {
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 10px;
  }

  .footer-separator {
    display: none;
  }

  .footer-instagram {
    margin-bottom: 55px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-legal {
    justify-content: center;
    gap: 10px 18px;
  }

}