:root {
  --cream: #f4ecdc;
  --paper: #fbf7ee;
  --blue: #194d62;
  --dark: #103847;
  --gold: #c79443;
  --terra: #a94e32;
  --line: #d6c7ad;
  --ink: #1d2a27;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.meander {
  height: 15px;
  background-color: var(--dark);
  background-image:
    linear-gradient(
      90deg,
      transparent 0 8px,
      var(--gold) 8px 11px,
      transparent 11px 19px
    ),
    linear-gradient(
      0deg,
      transparent 0 5px,
      var(--gold) 5px 8px,
      transparent 8px 15px
    );
  background-size: 19px 15px;
}
.header {
  min-height: 92px;
  padding: 12px clamp(20px, 5vw, 78px);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.97);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  line-height: 1;
}
.brand small,
.brand span {
  font-size: 8px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--gold);
}
.brand strong {
  font:
    700 34px Georgia,
    serif;
  letter-spacing: 0.08em;
  color: var(--dark);
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 28px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav details {
  position: relative;
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
nav details div {
  min-width: 210px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff9ed;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px #1c160d2e;
}
nav details:not([open]) div {
  display: none;
}
nav details div a {
  padding: 10px;
  white-space: nowrap;
}
.phone {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu > summary {
  padding: 11px 14px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.mobile-menu > div {
  min-width: 230px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 44px;
  background: #fff9ed;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px #1c160d2e;
}
.mobile-menu a,
.mobile-menu b {
  padding: 8px 10px;
  font-size: 12px;
}
.mobile-menu b {
  color: var(--terra);
}
.temple-hero {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.08fr) minmax(400px, 0.92fr) 140px;
  padding: 18px 0;
  position: relative;
  background: #2c1b10;
}
.temple-hero:before,
.temple-hero:after {
  content: '';
  height: 18px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  background-color: #21150e;
  background-image: linear-gradient(
    90deg,
    transparent 0 10px,
    #d1a15c 10px 14px,
    transparent 14px 24px
  );
  background-size: 24px 18px;
}
.temple-hero:before {
  top: 0;
}
.temple-hero:after {
  bottom: 0;
}
.column {
  background: url('public/greek-colonnade.jpg') no-repeat;
  background-size: auto 100%;
}
.column.left {
  background-position: 13% center;
}
.column.right {
  background-position: 87% center;
}
.hero-photo {
  min-height: 690px;
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #0b22284d);
}
.hero-photo span {
  padding: 11px 16px;
  position: absolute;
  left: 25px;
  bottom: 30px;
  z-index: 2;
  background: #fbf7eee8;
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy {
  padding: 70px clamp(35px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--terra);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--dark);
}
h1 {
  margin: 0;
  font-size: clamp(55px, 7vw, 90px);
  line-height: 0.9;
}
h1 em {
  color: var(--terra);
  font-weight: 500;
}
.hero-copy > p:not(.eyebrow) {
  font:
    20px/1.75 Georgia,
    serif;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.button.primary {
  background: var(--blue);
  color: #fff;
}
.facts {
  display: flex;
  gap: 24px;
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}
.colonnade {
  min-height: 470px;
  padding: 50px 20px;
  display: grid;
  place-items: center;
  position: relative;
  background: #071e31 url('public/greek-colonnade.jpg') center/cover no-repeat;
  border-block: 8px solid #5a351b;
}
.colonnade:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #090a0952;
}
.colonnade > div {
  max-width: 720px;
  padding: 34px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff4dd;
  background: #071928b8;
  border: 1px solid #ddaf65bf;
}
.colonnade p {
  color: #d8aa62;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.colonnade h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
}
.colonnade span {
  display: block;
  margin-top: 15px;
  font:
    18px/1.5 Georgia,
    serif;
}
.section {
  padding: 95px clamp(24px, 7vw, 110px);
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-title h2,
.bonus h2,
.story h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
}
.section-title > a {
  color: var(--terra);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-card {
  padding: 35px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px #2b23160f;
}
.date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--terra);
}
.date b {
  font:
    46px/1 Georgia,
    serif;
}
.date span,
.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.label {
  color: var(--gold);
}
.news-card h3,
.service h3 {
  margin: 7px 0 10px;
  font-size: 29px;
}
.news-card p {
  line-height: 1.7;
}
.gallery {
  background: #173f50;
  color: #f7efe2;
  border-block: 12px solid #c4954b;
}
.gallery h2 {
  color: #fff;
}
.gallery .eyebrow,
.gallery .section-title > a {
  color: #e6ba73;
}
.gallery-stage {
  height: min(65vw, 680px);
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 8px solid #b88645;
  outline: 3px solid #5c371d;
  background: #071e31;
}
.gallery-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-caption {
  padding: 24px 30px;
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #0a2029d9;
  border-left: 4px solid #d2a15a;
}
.gallery-caption span {
  color: #ddb166;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.gallery-caption h3 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(30px, 4vw, 50px);
}
.arrow {
  width: 48px;
  height: 58px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ffffff75;
  background: #071e31ba;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.arrow.prev {
  left: 16px;
}
.arrow.next {
  right: 16px;
}
.gallery-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-controls span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bonus {
  padding: 95px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  background: #103847;
  color: #f7f0e3;
  border-block: 12px solid #c09048;
}
.bonus h2 {
  color: #fff;
}
.bonus > div > p:not(.eyebrow) {
  max-width: 580px;
  line-height: 1.8;
}
.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #162d33;
}
.bonus-card {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #d8ae67;
  border-radius: 24px;
  color: #f4ddb0;
  background: linear-gradient(145deg, #174f64, #0a2b38);
  box-shadow: 0 28px 70px #0006;
}
.bonus-card > span {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.15em;
}
.bonus-card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.bonus-card i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid #d8ae67;
  border-radius: 50%;
  font:
    46px Georgia,
    serif;
}
.bonus-card strong {
  font:
    38px Georgia,
    serif;
  letter-spacing: 0.1em;
}
.bonus-card strong small {
  display: block;
  font:
    8px Arial,
    sans-serif;
}
.service {
  background: #eee2cd;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-grid article {
  padding: 34px;
  background: #fffaf1;
  border: 1px solid #ccb995;
}
.service-icon {
  color: var(--terra);
  font-size: 28px;
}
.service-grid article > p:not(.label) {
  min-height: 66px;
  line-height: 1.65;
  color: #62645f;
}
.service dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid #e2d5c0;
  font-size: 12px;
}
.service dd {
  margin: 0;
  text-align: right;
}
.menu {
  background: #f7efe1;
  border-block: 14px solid var(--dark);
}
.menu-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 30px;
}
.menu-layout > img {
  width: 100%;
  height: 100%;
  max-height: 820px;
  object-fit: cover;
  border: 10px solid #b68242;
  outline: 3px solid #352214;
}
.menu iframe {
  width: 100%;
  min-height: 820px;
  border: 10px solid #2c1c12;
  outline: 3px solid #c7934c;
  background: white;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: #eee2cd;
}
.story p:not(.eyebrow) {
  font:
    20px/1.75 Georgia,
    serif;
  color: #46504d;
}
footer {
  padding: 60px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
  background: #f9f3e8;
  font-size: 13px;
  line-height: 1.7;
}
footer > div > strong {
  font:
    36px Georgia,
    serif;
  color: var(--dark);
}
footer b {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto auto;
  }
  .header nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .temple-hero {
    grid-template-columns: 80px minmax(0, 1fr) 80px;
  }
  .hero-photo,
  .hero-copy {
    grid-column: 2;
  }
  .column.left {
    grid-column: 1;
    grid-row: 1/3;
  }
  .column.right {
    grid-column: 3;
    grid-row: 1/3;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid article:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 750px) {
  .header {
    min-height: 74px;
    padding: 9px 16px;
  }
  .brand {
    align-items: flex-start;
  }
  .phone {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 0;
    border: 1px solid var(--line);
  }
  .phone:before {
    content: '☎';
    font-size: 18px;
  }
  .temple-hero {
    grid-template-columns: 26px minmax(0, 1fr) 26px;
  }
  .hero-photo {
    min-height: 390px;
  }
  .hero-copy {
    padding: 55px 24px 65px;
  }
  .facts {
    flex-direction: column;
    gap: 10px;
  }
  .section,
  .bonus {
    padding: 70px 24px;
  }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-card {
    grid-template-columns: 65px 1fr;
    padding: 24px 18px;
    gap: 18px;
  }
  .gallery-stage {
    height: 65vh;
    min-height: 460px;
  }
  .gallery-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .gallery-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .gallery-controls .button {
    width: 100%;
  }
  .bonus,
  .story {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article:last-child {
    grid-column: auto;
  }
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-layout > img {
    max-width: 520px;
    margin: auto;
  }
  .menu iframe {
    min-height: 620px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 430px) {
  footer {
    grid-template-columns: 1fr;
  }
  .column {
    opacity: 0.85;
  }
}
