:root {
  --ink: #203326;
  --ink-soft: #5d655d;
  --cream: #fbf7f0;
  --paper: #fffdf9;
  --sand: #eadfce;
  --gold: #b7792d;
  --gold-light: #d7ab62;
  --wine: #7e2d31;
  --shadow: 0 24px 70px rgba(47, 38, 24, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(183, 121, 45, 0.08), transparent 24rem),
    var(--cream);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(80, 55, 30, 0.18) 0.6px, transparent 0.6px);
  background-size: 9px 9px;
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.announcement {
  padding: 8px 20px;
  color: #fff7e9;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(96, 73, 40, 0.12);
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  min-height: 94px;
  gap: 28px;
}

.brand img {
  width: 286px;
  height: 84px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.nav > a,
.nav-parent {
  position: relative;
  padding: 30px 0 27px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav > a::after,
.nav-parent::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-dropdown:hover .nav-parent::after,
.nav-dropdown.active .nav-parent::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.nav-parent::before {
  position: absolute;
  right: -13px;
  content: "⌄";
  font-size: 12px;
}

.nav-submenu {
  position: absolute;
  z-index: 40;
  top: calc(100% - 7px);
  left: 50%;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  border: 1px solid rgba(73, 57, 36, 0.1);
  border-radius: 14px;
  padding: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(31, 42, 33, 0.16);
  opacity: 0;
  transform: translate(-50%, 12px);
  visibility: hidden;
  transition: 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu a {
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  color: #fff;
  background: var(--ink);
}

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

.language-select {
  min-width: 72px;
  border: 1px solid rgba(71, 57, 38, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #e9dfd2;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(250, 246, 238, 0.98) 0%, rgba(250, 246, 238, 0.88) 34%, rgba(250, 246, 238, 0.15) 67%, rgba(20, 25, 20, 0.14) 100%),
    linear-gradient(0deg, rgba(36, 47, 37, 0.28), transparent 42%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 132px;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: center;
}

.hero-copy {
  width: min(580px, 52%);
  min-width: 0;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.4vw, 88px);
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 62px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.hero-copy p {
  max-width: 530px;
  margin: 0 0 34px;
  color: #4d594f;
  font-size: 17px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 24px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
}

.btn-gold {
  border-color: var(--gold);
  background: var(--gold);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(28, 45, 33, 0.78);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 18px;
}

.hero-note span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  color: #f8f1e6;
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
  gap: 28px;
}

.section-head p,
.section-intro {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .section-head p {
  color: #c8d0c8;
}

.category-grid,
.product-grid,
.news-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(19, 30, 21, 0.82), transparent 64%);
}

.category-card-content {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.category-card small {
  display: block;
  margin-bottom: 8px;
  color: #e5c98f;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0;
  font-size: 34px;
}

.category-card.tea img,
.product-card.tea img {
  object-position: 77% center;
}

.category-card.oil img,
.product-card.oil img {
  object-position: 25% center;
}

.experience {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
}

.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  min-height: 560px;
  border-radius: 180px 180px 28px 28px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: -28px;
  bottom: 38px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  font-family: Georgia, serif;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  margin-top: 34px;
  gap: 18px;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--gold);
  background: #fff;
  font-weight: 900;
}

.feature strong {
  display: block;
}

.feature p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(24, 43, 30, 0.94), rgba(24, 43, 30, 0.48), rgba(24, 43, 30, 0.1));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 62px;
}

.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(48px, 6vw, 76px);
}

.page-hero p {
  max-width: 600px;
  margin: 0;
  color: #e7ece7;
}

.story-grid,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.story-grid img {
  min-height: 580px;
  border-radius: var(--radius);
  object-fit: cover;
}

.quote {
  margin: 28px 0;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.4;
}

.value-card,
.news-card {
  border: 1px solid rgba(73, 57, 36, 0.12);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.64);
}

.value-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 42px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
  gap: 10px;
}

.filter-btn {
  border: 1px solid rgba(36, 51, 38, 0.16);
  border-radius: 999px;
  padding: 11px 20px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--ink);
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(73, 57, 36, 0.1);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(64, 50, 30, 0.06);
}

.product-card-media {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #f3ece3;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 6px 11px;
  color: #fff;
  background: rgba(34, 51, 39, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 22px;
}

.product-card-body h3 {
  font-size: 25px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 13px;
}

.product-price {
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.media-page-hero {
  min-height: 340px;
}

.media-section {
  background: var(--paper);
}

.media-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 20px;
  gap: 30px;
}

.media-heading h2 {
  margin-bottom: 0;
}

.media-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 30px;
}

.photo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  padding: 0;
  color: #fff;
  background: #e8dfd4;
  box-shadow: 0 8px 28px rgba(42, 45, 36, 0.08);
}

.photo-card::after,
.video-gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 34, 23, 0.72), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.photo-card img,
.video-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-card span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: 220ms ease;
}

.photo-card:hover img,
.video-gallery-card:hover img {
  transform: scale(1.045);
}

.photo-card:hover::after,
.video-gallery-card:hover::after {
  opacity: 1;
}

.photo-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.video-gallery-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  padding: 0;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(42, 45, 36, 0.1);
}

.video-gallery-card::after {
  opacity: 1;
}

.video-play {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  font-size: 17px;
  text-indent: 3px;
  transition: transform 200ms ease, background 200ms ease;
}

.video-gallery-card:hover .video-play {
  color: #fff;
  background: var(--gold);
  transform: scale(1.08);
}

.video-card-title {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 24px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 27px;
  text-align: left;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.gallery-pagination button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--sand);
  color: var(--ink);
  background: #fff;
  font-size: 18px;
}

.gallery-pagination button:first-child {
  border-radius: 9px 0 0 9px;
}

.gallery-pagination button:last-child {
  border-radius: 0 9px 9px 0;
}

.gallery-pagination button + button {
  border-left: 0;
}

.gallery-pagination button.active,
.gallery-pagination button:hover {
  color: #fff;
  background: var(--gold);
}

.media-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgba(10, 18, 13, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.media-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 32px;
  line-height: 1;
}

.modal-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 40px;
  transform: translateY(-50%);
}

.modal-prev {
  left: 28px;
}

.modal-next {
  right: 28px;
}

.lightbox-content {
  display: grid;
  max-width: min(1200px, 86vw);
  max-height: 84vh;
  margin: 0;
  justify-items: center;
  gap: 14px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.36);
}

.lightbox-content figcaption {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 21px;
}

.video-modal-content {
  width: min(1100px, 90vw);
}

.video-modal-content video {
  display: block;
  width: 100%;
  max-height: 76vh;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.38);
}

.video-modal-content h3 {
  margin: 16px 0 0;
  color: #fff;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.video-card {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
}

.video-card img {
  position: absolute;
  inset: 0;
  opacity: 0.44;
}

.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 25px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-card span {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card {
  padding: 0;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.news-card-body {
  padding: 25px;
}

.news-date {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 12px;
  font-size: 25px;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8dfd4;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 650ms ease;
}

.slide.active {
  opacity: 1;
}

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

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: transparent;
}

.slider-dot.active {
  background: #fff;
}

.product-detail-copy .price {
  margin: 15px 0 26px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 32px;
}

.product-detail-copy > p {
  color: var(--ink-soft);
}

.spec-list {
  margin: 30px 0;
  border-top: 1px solid var(--sand);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--sand);
  padding: 13px 0;
  gap: 20px;
}

.spec-row span {
  color: var(--ink-soft);
}

.contact-card {
  border-radius: var(--radius);
  padding: 42px;
  color: #fff;
  background: var(--ink);
}

.contact-list {
  display: grid;
  margin-top: 34px;
  gap: 22px;
}

.contact-list small {
  display: block;
  color: #d7c59f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(71, 57, 38, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.map {
  display: grid;
  min-height: 370px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(rgba(31, 50, 36, 0.82), rgba(31, 50, 36, 0.82)),
    url("images/hero-ephesus.png") center / cover;
  text-align: center;
}

.map strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
}

.site-footer {
  padding: 70px 0 28px;
  color: #e7eee8;
  background: #17271d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 285px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--cream);
}

.site-footer p {
  max-width: 360px;
  color: #aebcb1;
  font-size: 14px;
}

.site-footer h4 {
  margin: 0 0 17px;
  color: #e1c384;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #cbd5cd;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  color: #829086;
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
  }

  .header-actions {
    grid-column: 2;
  }

  .nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 94px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-top: 1px solid var(--sand);
    padding: 16px 20px 25px;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
  }

  .nav-dropdown {
    display: block;
    align-self: auto;
  }

  .nav-parent {
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .nav-parent::before {
    right: 4px;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 16px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown.open .nav-submenu {
    display: grid;
    transform: none;
  }

  .nav-submenu a {
    padding: 9px 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
  }

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

  .menu-toggle {
    display: block;
  }

  .category-grid,
  .product-grid,
  .news-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience,
  .story-grid,
  .contact-grid,
  .detail-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .announcement {
    font-size: 9px;
  }

  .header-inner {
    position: relative;
    display: flex;
    min-height: 76px;
    justify-content: flex-start;
  }

  .brand img {
    width: 210px;
    height: 72px;
  }

  .header-actions {
    position: absolute;
    top: 17px;
    right: 0;
    gap: 7px;
  }

  .nav {
    top: 76px;
  }

  .language-select {
    width: 62px;
    min-width: 62px;
    padding-inline: 8px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(250, 246, 238, 0.98) 0%, rgba(250, 246, 238, 0.92) 47%, rgba(250, 246, 238, 0.08) 82%);
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding-right: 14px;
    padding-left: 14px;
    align-items: end;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 28px);
    padding: 270px 0 65px;
  }

  h1 {
    width: 100%;
    max-width: calc(100vw - 28px);
    font-size: 46px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-note {
    display: none;
  }

  .hero-dots {
    right: auto;
    bottom: 34px;
    left: 28px;
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    display: block;
  }

  .media-heading {
    display: block;
  }

  .media-heading p {
    margin-top: 12px;
  }

  .section-head p {
    margin-top: 15px;
  }

  .category-grid,
  .product-grid,
  .news-grid,
  .value-grid,
  .experience,
  .story-grid,
  .contact-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 360px;
  }

  .experience-badge {
    right: 12px;
  }

  .page-hero {
    min-height: 340px;
  }

  .story-grid img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .photo-grid,
  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-card {
    aspect-ratio: 4 / 3;
  }

  .photo-card::after,
  .photo-card span {
    opacity: 1;
  }

  .photo-card span {
    transform: none;
  }

  .media-modal {
    padding: 66px 14px 28px;
  }

  .modal-nav {
    top: auto;
    bottom: 20px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .modal-prev {
    left: calc(50% - 58px);
  }

  .modal-next {
    right: calc(50% - 58px);
  }

  .lightbox-content {
    max-width: 100%;
  }

  .lightbox-content img {
    max-height: 68vh;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .slider {
    min-height: 470px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}
