/*
Theme Name: Arrival Impressions
Theme URI: https://example.com/arrival-impressions
Author: Arrival Impressions
Author URI: https://example.com
Description: A premium one-page WordPress theme for Arrival Impressions, a special-occasion hotel room surprise and experience company.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arrival-impressions
*/

:root {
  --ink: #22201f;
  --muted: #655f59;
  --paper: #fbf8f4;
  --soft: #f1e8df;
  --line: #ded1c6;
  --wine: #7c293b;
  --plum: #45324c;
  --moss: #62735f;
  --gold: #b88945;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(40, 29, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(19, 15, 14, 0.72), rgba(19, 15, 14, 0));
}

.site-header.solid {
  position: sticky;
  background: var(--ink);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  text-decoration: none;
}

nav a {
  border-bottom: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #181413;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 10, 0.88) 0%, rgba(13, 11, 10, 0.58) 36%, rgba(13, 11, 10, 0.12) 76%),
    linear-gradient(0deg, rgba(13, 11, 10, 0.84) 0%, rgba(13, 11, 10, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding: 132px clamp(22px, 6vw, 76px) 92px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 10vw, 8.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.service-area {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 850;
}

.hero-actions,
.service-grid,
.steps,
.occasion-list {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.button,
button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.primary,
button {
  background: var(--wine);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.outline {
  border: 1px solid var(--wine);
  color: var(--wine);
}

section,
footer {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro,
.partners,
.payments,
.inquire,
.moments {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro,
.partners {
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.partners p:last-child,
.moments-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  max-width: 900px;
  margin-bottom: 34px;
  gap: 8px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(35, 28, 23, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-image-link {
  display: block;
  text-decoration: none;
}

.service-card div {
  padding: 22px;
}

.service-card p,
.steps p,
.inquire-copy p,
footer p {
  color: var(--muted);
}

.price-note {
  margin-bottom: 10px;
  color: var(--wine);
  font-weight: 900;
}

.price-note.large {
  font-size: 1.35rem;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-actions {
  display: flex;
  margin-top: 28px;
}

.inquire-copy a,
footer a {
  color: inherit;
  font-weight: 800;
}

footer span {
  color: var(--line);
  padding: 0 10px;
}

.moments {
  background:
    linear-gradient(90deg, rgba(98, 115, 95, 0.12), rgba(124, 41, 59, 0.08)),
    var(--soft);
}

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

.occasion-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.56);
  padding: 14px 16px;
  font-weight: 800;
}

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

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--wine);
  font-weight: 900;
}

.partners {
  background: var(--plum);
  color: var(--white);
}

.partners p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.payments {
  align-items: center;
  background: var(--soft);
}

.payments-copy p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.payment-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-actions {
  display: grid;
  gap: 12px;
}

.payment-panel .button,
.payment-actions .button {
  width: 100%;
}

.payment-embed {
  display: grid;
  gap: 12px;
}

.inquire {
  align-items: center;
  background: var(--white);
}

.form-panel,
.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}

.form-status.success {
  background: rgba(98, 115, 95, 0.15);
  color: var(--moss);
}

.form-status.error {
  background: rgba(124, 41, 59, 0.12);
  color: var(--wine);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  padding-bottom: 30px;
}

footer p:first-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.popup-launch {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  box-shadow: 0 14px 40px rgba(35, 28, 23, 0.22);
}

.site-popup[hidden] {
  display: none;
}

.site-popup {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 19, 0.68);
}

.site-popup-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-popup-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.site-popup-card p:not(.section-kicker) {
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  min-height: 38px;
  border-radius: 50%;
  padding: 0;
}

body.popup-active {
  overflow: hidden;
}

.archive-hero {
  padding-top: clamp(58px, 8vw, 100px);
  background: var(--soft);
}

.archive-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.archive-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.term-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.term-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
}

.catalog-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.single-option {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.single-media img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.single-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.entry-content {
  color: var(--muted);
  font-size: 1.08rem;
}

.entry-content p {
  color: inherit;
}

.single-copy .button {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .service-grid,
  .catalog-grid,
  .single-option,
  .steps,
  .intro,
  .partners,
  .payments,
  .inquire,
  .moments {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  nav {
    gap: 10px;
    font-size: 0.82rem;
  }

  .brand span:last-child {
    max-width: 112px;
    line-height: 1.05;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 11, 10, 0.9), rgba(13, 11, 10, 0.36)),
      linear-gradient(0deg, rgba(13, 11, 10, 0.86), rgba(13, 11, 10, 0.1));
  }

  .hero-content {
    padding: 126px 20px 54px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero-actions,
  .occasion-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  footer {
    display: grid;
  }

}
