/*==================================================
NANUS RESTAURANT
Premium Website
by samui.website
==================================================*/

:root {
  --cream: #f7f2ea;
  --cream-dark: #eee6d8;
  --olive: #5b6b3d;
  --olive-dark: #44502e;
  --tomato: #c44a30;
  --terracotta: #b95c41;
  --charcoal: #232323;
  --grey: #666;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.1);
  --radius: 26px;
  --container: 1720px;
  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

.container {
  width: min(var(--container), 96%);
  margin: auto;
}

.section {
  padding: 140px 0;
  position: relative;
}

h1 {
  font-family: Anton, sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

p {
  color: var(--grey);
  font-size: 1.05rem;
margin-bottom: 15px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--tomato);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.center {
  text-align: center;
  max-width: 760px;
  margin: auto auto 70px;
}

/*=============================
Buttons
==============================*/

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 18px 35px rgba(196, 74, 48, 0.28);
}

.btn-primary:hover {
  background: #a43a22;
  transform: translateY(-4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
}

.full {
  width: 100%;
}

/*=============================
Header
==============================*/

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.4s;
  padding: 22px 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 180px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 12px 20px;

    border-radius: 999px;

    color: #fff;
    background: var(--tomato);

    font-weight: 700;
    line-height: 1;

    box-shadow: 0 10px 24px rgba(196, 74, 48, .22);

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.desktop-nav a::after {
    display: none;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: #a43a22;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(196, 74, 48, .3);
}

.site-header.scrolled .desktop-nav a {
    color: #fff;
    background: var(--tomato);
}
.site-header .container {
    gap: 24px;
}

 
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
}

/*=============================
Hero
==============================*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 16, 16, 0.45), rgba(16, 16, 16, 0.45)),
    url("../images/hero.webp") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.hero-copy {
  color: #fff;
    padding-top: 160px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 35px 0;
  font-size: 1.15rem;
}

.hero-copy span {
  color: #ffd98d;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

/*==================================================
PIZZA SHOWCASE
==================================================*/

.signature-pizzas {
  background: linear-gradient(to bottom, #fff, var(--cream));
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pizza-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pizza-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.16);
}

.pizza-image {
  overflow: hidden;
}

.pizza-image img {
  height: 360px;
  object-fit: cover;
  transition: 1.2s ease;
}

.pizza-card:hover img {
  transform: scale(1.08);
}

.pizza-content {
  padding: 38px;
}

.pizza-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.price {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-weight: 700;
}

/*==================================================
ARTISAN
==================================================*/

.artisan {
  background: #fff;
}

.artisan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.artisan-copy h2 {
  margin-bottom: 28px;
}

.artisan-copy p {
  margin-bottom: 40px;
}

.artisan-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin-bottom: 45px;
}

.artisan-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.artisan-list i {
  color: var(--tomato);
}

.artisan-image {
  position: relative;
}

.artisan-image img {
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.artisan-image::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #d8e0cb;
  top: -50px;
  right: -70px;
  z-index: -1;
}

/*==================================================
BEACH
==================================================*/

.beach-life {
  background: var(--cream);
}

.beach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.beach-image {
  position: relative;
}

.beach-image img {
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.beach-copy p {
  margin-bottom: 40px;
}

.beach-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.beach-highlights div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  font-weight: 700;
}

.beach-highlights i {
  color: var(--tomato);
}

/*==================================================
FULL WIDTH IMAGE
==================================================*/

.divider-image {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.divider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.divider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45));
}

.divider-overlay h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
}

/*==================================================
FLOATING BASIL
==================================================*/

.floating-basil {
  position: fixed;
  width: 34px;
  height: 34px;
  background: url("../images/icons/basil.svg") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.07;
  z-index: 2;
  animation: floatLeaf 18s linear infinite;
}

.basil-1 {
  left: 8%;
  top: 20%;
}

.basil-2 {
  right: 12%;
  top: 45%;
  animation-delay: 5s;
}

.basil-3 {
  left: 50%;
  top: 70%;
  animation-delay: 11s;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/*==================================================
REVEAL ANIMATIONS
==================================================*/

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/*==================================================
GALLERY
==================================================*/

.gallery {
  background: #fff;
  overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}





/*==================================================
REVIEWS
==================================================*/

.reviews {
  background: var(--cream);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.review-card {
  position: relative;
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 90px;
  font-family: Georgia;
  color: rgba(0, 0, 0, 0.05);
}

.stars {
  margin-bottom: 22px;
  color: #f6b600;
  font-size: 20px;
  letter-spacing: 3px;
}

.review-card p {
  margin-bottom: 28px;
}

.review-card strong {
  color: var(--olive);
}

/*==================================================
BOOKING
==================================================*/

.booking {
  position: relative;
  background:
    linear-gradient(rgba(248, 243, 234, 0.94), rgba(248, 243, 234, 0.94)),
    url("../images/flour.webp") center/cover;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 90px;
  align-items: center;
}

.booking-info {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  list-style: none;
}

.booking-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.booking-info i {
  color: var(--tomato);
}

.booking-form {
  padding: 42px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: none;
  border-radius: 16px;
  background: #f6f6f6;
  font-family: inherit;
  font-size: 16px;
  transition: 0.3s;
}

.booking-form textarea {
  min-height: 160px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px var(--tomato);
}

/*==================================================
FLATPICKR
==================================================*/

.flatpickr-calendar {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.flatpickr-months {
  background: var(--olive);
}

.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-weekday {
  color: var(--olive);
  font-weight: 700;
}

.flatpickr-day.selected {
  background: var(--tomato);
  border-color: var(--tomato);
}

.flatpickr-time {
  border-top: none;
}

/*==================================================
MAP
==================================================*/

.location {
  height: 520px;
}

.location iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*==================================================
FOOTER
==================================================*/

.site-footer {
  background: #27321d;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
  padding: 90px 0;
}

.footer-logo {
  width: 170px;
  margin-bottom: 24px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
  margin-bottom: 24px;
}

.site-footer a {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 18px;
}

.socials a:hover {
  background: var(--tomato);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.footer-bottom span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom span:last-child {
  text-align: right;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #fff;
  opacity: 0.72;
}

/*==================================================
FLOATING BUTTONS
==================================================*/

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 28px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  z-index: 999;
  transition: 0.35s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.whatsapp-float {
  bottom: 110px;
  background: #25d366;
  font-size: 28px;
}

.back-to-top {
  bottom: 38px;
  background: var(--tomato);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-5px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .artisan-grid,
  .beach-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
  }
  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
  }
  .site-header.scrolled .menu-toggle span {
    background: #222;
  }
  .hero {
    min-height: 85vh;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pizza-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom span:last-child {
    text-align: left;
  }
  .whatsapp-float,
  .back-to-top {
    right: 16px;
  }
}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 120px 24px 50px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(196, 74, 48, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, #26311d, #3e4c2d);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.mobile-menu a {
  position: relative;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 10vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(20px);
  transition:
    color 0.3s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.13s;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.18s;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.23s;
}

.mobile-menu.active a:nth-child(5) {
  transition-delay: 0.28s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #ffd98d;
}

/*==================================================
MOBILE MENU TOGGLE
==================================================*/

.menu-toggle {
  position: relative;
  z-index: 1010;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    top 0.35s ease,
    background 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.active {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.site-header.scrolled .menu-toggle {
  border-color: rgba(35, 35, 35, 0.15);
  background: rgba(35, 35, 35, 0.05);
}

.site-header.scrolled .menu-toggle span {
  background: var(--charcoal);
}

.site-header.scrolled .menu-toggle.active {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .menu-toggle.active span {
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: transparent;
  box-shadow: none;
}

body.menu-open .logo,
body.menu-open .header-actions > .btn-outline,
body.menu-open .header-actions > .btn-primary {
  position: relative;
  z-index: 1010;
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions > .btn-outline,
  .header-actions > .btn-primary {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header {
    padding: 16px 0;
  }
  .site-header .logo img {
    width: 145px;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/*==================================================
FEATURE STRIP
==================================================*/

.feature-strip {
    position: relative;

    padding: 90px 0;

    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature {
    padding: 42px 32px;

    text-align: center;

    background: var(--cream);
    border-radius: 28px;

    transition: var(--transition);

    box-shadow: var(--shadow-md);
}

.feature:hover {
    transform: translateY(-8px);

    background: #fff;

    box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
}

.feature i {
    display: inline-grid;
    place-items: center;

    width: 82px;
    height: 82px;

    margin: 0 auto 26px;

    border-radius: 50%;

    font-size: 32px;

    color: #fff;
    background: linear-gradient(
        135deg,
        var(--tomato),
        var(--terracotta)
    );

    box-shadow: 0 18px 35px rgba(196, 74, 48, .28);

    transition: var(--transition);
}

.feature:hover i {
    transform: rotate(-8deg) scale(1.08);
}

.feature h3 {
    margin-bottom: 16px;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;

    color: var(--charcoal);
}

.feature p {
    max-width: 240px;

    margin: 0 auto;

    color: var(--grey);
    line-height: 1.7;
}

@media (max-width:1100px) {

    .feature-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:768px) {

    .feature-strip {
        padding: 70px 0;
    }

    .feature-strip .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 36px 28px;
    }

    .feature i {
        width: 72px;
        height: 72px;

        font-size: 28px;

        margin-bottom: 20px;
    }

    .feature h3 {
        font-size: 1.8rem;
    }

}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 560px;
}

.about-images .large {
    width: 82%;
    height: 500px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.about-images .small {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 46%;
    height: 240px;
    object-fit: cover;

    border: 10px solid var(--cream);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        min-height: 500px;
    }

    .about-images .large {
        width: 86%;
        height: 440px;
    }
}

@media (max-width: 640px) {
    .about-images {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .about-images .large,
    .about-images .small {
        position: static;
        width: 100%;
        height: 300px;
        border: 0;
    }
}

/*==================================================
MOBILE OVERFLOW FIX
==================================================*/

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero,
.hero-grid,
.hero-copy,
.hero-buttons,
.hero-highlights,
.site-header,
.site-header .container {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 768px) {
    .site-header .container {
        width: 100%;
        padding: 0 16px;
    }

    .hero {
        min-height: 100svh;
        padding: 120px 0 70px;
        background-position: center;
    }

    .hero .container {
        width: 100%;
        padding: 0 18px;
    }

    .hero-grid {
        display: block;
        width: 100%;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-copy h1 {
        max-width: 100%;
        margin: 0;

        font-size: clamp(3.4rem, 16vw, 5.4rem);
        line-height: .88;
        letter-spacing: 0;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-copy p {
        width: 100%;
        max-width: 100%;
        margin: 28px 0;

        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 14px;
        margin-top: 30px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding: 17px 20px;

        text-align: center;
        white-space: normal;
    }

    .hero-highlights {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 12px;
        margin-top: 32px;
    }

    .hero-highlights div {
        min-width: 0;
    }

    .logo img {
        width: 140px;
        max-width: 100%;
    }

    .menu-toggle {
        flex: 0 0 48px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 104px;
    }
}
