:root{
  --color-bg-primary:#0D0D0D;
  --color-bg-panel:#1A1A1A;
  --color-text-heading:#F5F1E8;
  --color-text-body:#B8B3AC;
  --color-accent-gold:#C9A15A;
  --color-button-text:#1A1A1A;
  --color-border:#2E2E2E;

  --font-heading:'Playfair Display',serif;
  --font-body:'Inter',sans-serif;
}

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

body{
  font-family:var(--font-body);
  background:var(--color-bg-primary);
  color:var(--color-text-body);
}

html{
  scroll-behavior:smooth;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  color:var(--color-text-heading);
}

p{
  color:var(--color-text-body);
}

.section{
  padding:110px 64px;
}

.section-head{
  max-width:640px;
  margin-bottom:56px;
}

.section-head-center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.badge-mid{
  display:flex;
  justify-content:center;
  position:relative;
  z-index:2;
  margin:-48px 0;
}

.badge{
  position:relative;
  width:180px;
  height:180px;
}

.badge-ring{
  position:absolute;
  inset:0;
  animation:badge-spin 18s linear infinite;
}

.badge-ring svg{
  width:100%;
  height:100%;
}

.badge-ring text{
  font-family:'Poppins',var(--font-body);
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
  fill:var(--color-text-heading);
}

.badge-crest{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:65px;
  height:auto;
  z-index:2;
}

@keyframes badge-spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.eyebrow,
.section-head .eyebrow{
  font-size:11px;
  font-weight:600;
  letter-spacing:3px;
  color:var(--color-accent-gold);
  margin-bottom:14px;
}

.section-head h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  font-weight:600;
  line-height:1.12;
}

.section-head p:not(.eyebrow){
  margin-top:18px;
  font-size:17px;
  line-height:1.7;
  color:var(--color-text-body);
}

.section-alt{
  background:var(--color-bg-primary);
}

.grid-2{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:64px;
  align-items:center;
}

.grid-3,
.grid-4{
  display:grid;
  gap:28px;
  align-items:stretch;
}

.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.about-photo{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.about-points{
  margin-top:32px;
  display:grid;
  gap:18px;
}

.about-points h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:6px;
}

.about-points p{
  font-size:15px;
  line-height:1.65;
  color:var(--color-text-body);
}

.service-card,
.team-card,
.review-card,
.blog-card{
  background:var(--color-bg-panel);
  border:1px solid var(--color-border);
}

.service-card,
.team-card,
.blog-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.service-card img,
.team-card img,
.blog-card img,
.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.service-card img{
  height:360px;
}

.service-card img.service-photo-head{
  object-position:50% 18%;
}

.service-card img.service-photo-up{
  object-position:50% 62%;
}

.team-card img{height:320px;}
.gallery-item img{height:280px;}

.team-card .card-body,
.blog-card .card-body{
  padding:26px 24px 28px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.service-card .card-body{
  padding:28px 24px 32px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.service-card h3,
.team-card h3,
.blog-card h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.service-card h3{
  margin-bottom:14px;
}

.card-body p,
.review-card p{
  font-size:15px;
  line-height:1.65;
  color:var(--color-text-body);
}

.price{
  display:inline-block;
  margin-top:auto;
  padding-top:16px;
  color:var(--color-accent-gold);
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
}

.review-card{
  padding:32px 28px;
}

.review-card .stars{
  color:var(--color-accent-gold);
  letter-spacing:1px;
  margin-bottom:16px;
}

.reviewer{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:22px;
}

.reviewer img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}

.reviewer strong{
  display:block;
  font-size:14px;
  color:var(--color-text-heading);
}

.reviewer span{
  font-size:13px;
  color:var(--color-text-body);
}

.team-role{
  color:var(--color-accent-gold);
  font-size:12px;
  letter-spacing:1.5px;
  margin-bottom:10px;
}

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

.gallery-item{
  overflow:hidden;
}

.gallery-mosaic{
  display:grid;
  grid-template-columns:1fr 1.15fr 1fr;
  grid-template-rows:240px 240px;
  gap:28px;
  max-width:1080px;
  margin:0 auto;
}

.gallery-mosaic .gallery-item:nth-child(1){grid-column:1;grid-row:1;}
.gallery-mosaic .gallery-item:nth-child(2){grid-column:1;grid-row:2;}
.gallery-mosaic .gallery-item:nth-child(3){grid-column:2;grid-row:1/3;}
.gallery-mosaic .gallery-item:nth-child(4){grid-column:3;grid-row:1;}
.gallery-mosaic .gallery-item:nth-child(5){grid-column:3;grid-row:2;}

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

.gallery-mosaic .gallery-item:nth-child(2) img{
  object-position:50% 28%;
}

.gallery-mosaic .gallery-item:nth-child(4) img{
  object-position:50% 22%;
}

.gallery-mosaic .gallery-item:nth-child(5) img{
  object-position:50% 24%;
}

.gallery-mosaic .gallery-feature img{
  object-position:50% 16%;
}

.booking-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
  max-width:1080px;
  margin:0 auto;
}

.booking-form{
  display:grid;
  gap:14px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  background:var(--color-bg-panel);
  color:var(--color-text-heading);
  border:1px solid var(--color-border);
  border-radius:6px;
  padding:16px 18px;
  font:inherit;
  font-size:15px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder{
  color:var(--color-text-body);
}

.booking-form select{
  color:var(--color-text-body);
}

.booking-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

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

.booking-form button{
  justify-self:start;
  margin-top:8px;
}

.hours-list{
  list-style:none;
  padding-top:4px;
}

.hours-list li{
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
  border-bottom:1px solid var(--color-border);
  color:var(--color-text-heading);
  font-size:15px;
}

.hours-list li:last-child{border-bottom:none;}

.hours-closed{
  color:var(--color-accent-gold);
}

.reviews{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:110px 64px;
}

.reviews-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
  filter:grayscale(1);
  pointer-events:none;
}

.reviews::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(13,13,13,0.58);
  pointer-events:none;
}

.reviews-content{
  position:relative;
  z-index:1;
  max-width:640px;
  width:100%;
  text-align:center;
}

.reviews-mark{
  display:block;
  font-family:var(--font-heading);
  font-size:72px;
  line-height:0.8;
  color:var(--color-accent-gold);
  margin-bottom:18px;
}

.reviews-quote{
  font-family:var(--font-heading);
  font-size:clamp(1.4rem, 2.4vw, 2rem);
  line-height:1.45;
  color:var(--color-text-heading);
  padding-bottom:28px;
  margin-bottom:28px;
  border-bottom:1px solid rgba(245,241,232,0.22);
}

.reviews-author{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:left;
}

.reviews-author img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.reviews-author strong{
  display:block;
  font-size:15px;
  color:var(--color-text-heading);
}

.reviews-author span{
  display:block;
  font-size:13px;
  color:var(--color-text-body);
}

.reviews-author .stars{
  color:var(--color-accent-gold);
  margin-top:4px;
  letter-spacing:1px;
}

.reviews-author .stars em{
  font-style:normal;
  color:var(--color-text-heading);
  margin-left:6px;
  font-size:13px;
}

.marquee{
  overflow:hidden;
  width:100%;
  background:var(--color-bg-primary);
  padding:30px 0;
}

.marquee-track{
  display:flex;
  align-items:center;
  white-space:nowrap;
  width:max-content;
  animation:marquee-scroll 20s linear infinite;
}

.marquee-track .item{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:clamp(28px, 4vw, 48px);
  color:var(--color-text-heading);
  padding:0 20px;
}

.marquee-track .sep{
  font-family:var(--font-heading);
  font-size:clamp(20px, 3vw, 32px);
  color:var(--color-accent-gold);
  padding:0 10px;
}

@keyframes marquee-scroll{
  from{transform:translateX(-50%);}
  to{transform:translateX(0);}
}

.site-footer{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:88px 0 0;
  background:var(--color-bg-primary);
  color:var(--color-text-heading);
}

.footer-main{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 24px;
}

.footer-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-decoration:none;
  color:var(--color-text-heading);
}

.footer-brand .brand-mark{
  height:42px;
  width:auto;
}

.footer-brand span{
  font-family:var(--font-heading);
  font-size:28px;
  font-weight:600;
  letter-spacing:4px;
}

.footer-contact{
  margin-top:22px;
  font-style:normal;
  font-size:15px;
  line-height:1.7;
  color:var(--color-text-heading);
}

.footer-contact span,
.footer-contact a{
  display:block;
}

.footer-contact a{
  margin-top:2px;
  color:var(--color-accent-gold);
  text-decoration:none;
}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
  margin-top:48px;
}

.footer-nav a{
  color:var(--color-text-heading);
  text-decoration:none;
  font-size:15px;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-brand:hover{
  color:var(--color-accent-gold);
}

.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  list-style:none;
  margin-top:36px;
}

.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#2A2A2A;
  color:var(--color-text-heading);
}

.footer-social a:hover{
  background:var(--color-accent-gold);
  color:var(--color-button-text);
}

.footer-social svg{
  width:15px;
  height:15px;
  fill:currentColor;
}

.footer-copy{
  width:100%;
  margin-top:48px;
  padding:22px 24px 28px;
  border-top:1px solid rgba(245,241,232,0.18);
  font-size:13px;
  color:var(--color-text-body);
}

@media (max-width:1000px){
  .section{padding:80px 24px;}
  .reviews{padding:80px 24px;min-height:60vh;}
  .grid-2,
  .booking-wrap{grid-template-columns:1fr;gap:36px;}
  .grid-3,
  .grid-4,
  .gallery-grid,
  .gallery-mosaic{
    grid-template-columns:1fr 1fr;
    grid-template-rows:none;
  }
  .gallery-mosaic .gallery-item:nth-child(n){
    grid-column:auto;
    grid-row:auto;
  }
  .gallery-mosaic .gallery-feature{grid-column:1/-1;}
  .gallery-mosaic .gallery-feature img{height:420px;}
  .gallery-mosaic .gallery-item img{height:260px;}
  .about-photo{height:360px;}
  .site-footer{padding:64px 0 0;}
}

@media (max-width:640px){
  .grid-3,
  .grid-4,
  .gallery-grid,
  .gallery-mosaic{grid-template-columns:1fr;}
  .booking-row{grid-template-columns:1fr;}
  .gallery-mosaic .gallery-feature{grid-column:auto;}
  .badge{
    width:140px;
    height:140px;
  }
  .badge-crest{width:50px;}
}

/* Photos: black-and-white, color on hover */
img:not(.brand-mark):not(.hero-photo):not(.reviews-bg):not(.badge-crest){
  filter:grayscale(1);
  transition:filter 0.5s ease;
}

img.reviews-bg{
  filter:grayscale(1);
}

img:not(.brand-mark):not(.hero-photo):not(.reviews-bg):not(.badge-crest):hover,
.avatars:hover img,
.proof:hover img,
.card:hover img,
.gallery-item:hover img,
.team-card:hover img,
.service-card:hover img,
.review-card:hover img,
.blog-card:hover img{
  filter:grayscale(0);
}
